@sentio/sdk 2.56.0-rc.3 → 2.57.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/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/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/sui/builtin/0x1.ts +12 -13
- package/src/sui/builtin/0x2.ts +87 -86
- package/src/sui/builtin/0x3.ts +65 -65
package/src/aptos/builtin/0x1.ts
CHANGED
@@ -146,11 +146,10 @@ export namespace dkg {
|
|
146
146
|
}
|
147
147
|
}
|
148
148
|
|
149
|
-
export
|
150
|
-
extends TypedEventInstance<DKGStartEvent> {
|
149
|
+
export type DKGStartEventInstance = TypedEventInstance<DKGStartEvent> & {
|
151
150
|
data_decoded: DKGStartEvent;
|
152
151
|
type_arguments: [];
|
153
|
-
}
|
152
|
+
};
|
154
153
|
|
155
154
|
export interface DKGState {
|
156
155
|
last_completed: option.Option<dkg.DKGSessionState>;
|
@@ -316,11 +315,10 @@ export namespace code {
|
|
316
315
|
}
|
317
316
|
}
|
318
317
|
|
319
|
-
export
|
320
|
-
extends TypedEventInstance<PublishPackage> {
|
318
|
+
export type PublishPackageInstance = TypedEventInstance<PublishPackage> & {
|
321
319
|
data_decoded: PublishPackage;
|
322
320
|
type_arguments: [];
|
323
|
-
}
|
321
|
+
};
|
324
322
|
|
325
323
|
export interface UpgradePolicy {
|
326
324
|
policy: number;
|
@@ -606,11 +604,10 @@ export namespace coin {
|
|
606
604
|
}
|
607
605
|
}
|
608
606
|
|
609
|
-
export
|
610
|
-
extends TypedEventInstance<DepositEvent> {
|
607
|
+
export type DepositEventInstance = TypedEventInstance<DepositEvent> & {
|
611
608
|
data_decoded: DepositEvent;
|
612
609
|
type_arguments: [];
|
613
|
-
}
|
610
|
+
};
|
614
611
|
|
615
612
|
export interface Withdraw<T0> {
|
616
613
|
account: MoveAddressType;
|
@@ -643,11 +640,10 @@ export namespace coin {
|
|
643
640
|
}
|
644
641
|
}
|
645
642
|
|
646
|
-
export
|
647
|
-
extends TypedEventInstance<WithdrawEvent> {
|
643
|
+
export type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
|
648
644
|
data_decoded: WithdrawEvent;
|
649
645
|
type_arguments: [];
|
650
|
-
}
|
646
|
+
};
|
651
647
|
|
652
648
|
export interface AggregatableCoin<T0> {
|
653
649
|
value: aggregator.Aggregator;
|
@@ -750,10 +746,10 @@ export namespace coin {
|
|
750
746
|
}
|
751
747
|
}
|
752
748
|
|
753
|
-
export
|
749
|
+
export type CoinDepositInstance = TypedEventInstance<CoinDeposit> & {
|
754
750
|
data_decoded: CoinDeposit;
|
755
751
|
type_arguments: [];
|
756
|
-
}
|
752
|
+
};
|
757
753
|
|
758
754
|
export interface CoinEventHandleDeletion {
|
759
755
|
event_handle_creation_address: MoveAddressType;
|
@@ -773,11 +769,11 @@ export namespace coin {
|
|
773
769
|
}
|
774
770
|
}
|
775
771
|
|
776
|
-
export
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
772
|
+
export type CoinEventHandleDeletionInstance =
|
773
|
+
TypedEventInstance<CoinEventHandleDeletion> & {
|
774
|
+
data_decoded: CoinEventHandleDeletion;
|
775
|
+
type_arguments: [];
|
776
|
+
};
|
781
777
|
|
782
778
|
export interface CoinInfo<T0> {
|
783
779
|
name: string;
|
@@ -833,11 +829,10 @@ export namespace coin {
|
|
833
829
|
}
|
834
830
|
}
|
835
831
|
|
836
|
-
export
|
837
|
-
extends TypedEventInstance<CoinWithdraw> {
|
832
|
+
export type CoinWithdrawInstance = TypedEventInstance<CoinWithdraw> & {
|
838
833
|
data_decoded: CoinWithdraw;
|
839
834
|
type_arguments: [];
|
840
|
-
}
|
835
|
+
};
|
841
836
|
|
842
837
|
export interface FreezeCapability<T0> {
|
843
838
|
dummy_field: boolean;
|
@@ -918,11 +913,10 @@ export namespace coin {
|
|
918
913
|
}
|
919
914
|
}
|
920
915
|
|
921
|
-
export
|
922
|
-
extends TypedEventInstance<PairCreation> {
|
916
|
+
export type PairCreationInstance = TypedEventInstance<PairCreation> & {
|
923
917
|
data_decoded: PairCreation;
|
924
918
|
type_arguments: [];
|
925
|
-
}
|
919
|
+
};
|
926
920
|
|
927
921
|
export interface PairedCoinType {
|
928
922
|
type: type_info.TypeInfo;
|
@@ -1727,11 +1721,11 @@ export namespace jwks {
|
|
1727
1721
|
}
|
1728
1722
|
}
|
1729
1723
|
|
1730
|
-
export
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1724
|
+
export type ObservedJWKsUpdatedInstance =
|
1725
|
+
TypedEventInstance<ObservedJWKsUpdated> & {
|
1726
|
+
data_decoded: ObservedJWKsUpdated;
|
1727
|
+
type_arguments: [];
|
1728
|
+
};
|
1735
1729
|
|
1736
1730
|
export interface Patch {
|
1737
1731
|
variant: copyable_any.Any;
|
@@ -2050,10 +2044,10 @@ export namespace block {
|
|
2050
2044
|
}
|
2051
2045
|
}
|
2052
2046
|
|
2053
|
-
export
|
2047
|
+
export type NewBlockInstance = TypedEventInstance<NewBlock> & {
|
2054
2048
|
data_decoded: NewBlock;
|
2055
2049
|
type_arguments: [];
|
2056
|
-
}
|
2050
|
+
};
|
2057
2051
|
|
2058
2052
|
export interface NewBlockEvent {
|
2059
2053
|
hash: MoveAddressType;
|
@@ -2076,11 +2070,10 @@ export namespace block {
|
|
2076
2070
|
}
|
2077
2071
|
}
|
2078
2072
|
|
2079
|
-
export
|
2080
|
-
extends TypedEventInstance<NewBlockEvent> {
|
2073
|
+
export type NewBlockEventInstance = TypedEventInstance<NewBlockEvent> & {
|
2081
2074
|
data_decoded: NewBlockEvent;
|
2082
2075
|
type_arguments: [];
|
2083
|
-
}
|
2076
|
+
};
|
2084
2077
|
|
2085
2078
|
export interface UpdateEpochInterval {
|
2086
2079
|
old_epoch_interval: bigint;
|
@@ -2099,11 +2092,11 @@ export namespace block {
|
|
2099
2092
|
}
|
2100
2093
|
}
|
2101
2094
|
|
2102
|
-
export
|
2103
|
-
|
2104
|
-
|
2105
|
-
|
2106
|
-
|
2095
|
+
export type UpdateEpochIntervalInstance =
|
2096
|
+
TypedEventInstance<UpdateEpochInterval> & {
|
2097
|
+
data_decoded: UpdateEpochInterval;
|
2098
|
+
type_arguments: [];
|
2099
|
+
};
|
2107
2100
|
|
2108
2101
|
export interface UpdateEpochIntervalEvent {
|
2109
2102
|
old_epoch_interval: bigint;
|
@@ -2122,11 +2115,11 @@ export namespace block {
|
|
2122
2115
|
}
|
2123
2116
|
}
|
2124
2117
|
|
2125
|
-
export
|
2126
|
-
|
2127
|
-
|
2128
|
-
|
2129
|
-
|
2118
|
+
export type UpdateEpochIntervalEventInstance =
|
2119
|
+
TypedEventInstance<UpdateEpochIntervalEvent> & {
|
2120
|
+
data_decoded: UpdateEpochIntervalEvent;
|
2121
|
+
type_arguments: [];
|
2122
|
+
};
|
2130
2123
|
|
2131
2124
|
export namespace entry {}
|
2132
2125
|
export namespace view {
|
@@ -2701,10 +2694,10 @@ export namespace stake {
|
|
2701
2694
|
}
|
2702
2695
|
}
|
2703
2696
|
|
2704
|
-
export
|
2697
|
+
export type AddStakeInstance = TypedEventInstance<AddStake> & {
|
2705
2698
|
data_decoded: AddStake;
|
2706
2699
|
type_arguments: [];
|
2707
|
-
}
|
2700
|
+
};
|
2708
2701
|
|
2709
2702
|
export interface AddStakeEvent {
|
2710
2703
|
pool_address: MoveAddressType;
|
@@ -2721,11 +2714,10 @@ export namespace stake {
|
|
2721
2714
|
}
|
2722
2715
|
}
|
2723
2716
|
|
2724
|
-
export
|
2725
|
-
extends TypedEventInstance<AddStakeEvent> {
|
2717
|
+
export type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
|
2726
2718
|
data_decoded: AddStakeEvent;
|
2727
2719
|
type_arguments: [];
|
2728
|
-
}
|
2720
|
+
};
|
2729
2721
|
|
2730
2722
|
export interface AllowedValidators {
|
2731
2723
|
accounts: MoveAddressType[];
|
@@ -2776,11 +2768,11 @@ export namespace stake {
|
|
2776
2768
|
}
|
2777
2769
|
}
|
2778
2770
|
|
2779
|
-
export
|
2780
|
-
|
2781
|
-
|
2782
|
-
|
2783
|
-
|
2771
|
+
export type DistributeRewardsInstance =
|
2772
|
+
TypedEventInstance<DistributeRewards> & {
|
2773
|
+
data_decoded: DistributeRewards;
|
2774
|
+
type_arguments: [];
|
2775
|
+
};
|
2784
2776
|
|
2785
2777
|
export interface DistributeRewardsEvent {
|
2786
2778
|
pool_address: MoveAddressType;
|
@@ -2799,11 +2791,11 @@ export namespace stake {
|
|
2799
2791
|
}
|
2800
2792
|
}
|
2801
2793
|
|
2802
|
-
export
|
2803
|
-
|
2804
|
-
|
2805
|
-
|
2806
|
-
|
2794
|
+
export type DistributeRewardsEventInstance =
|
2795
|
+
TypedEventInstance<DistributeRewardsEvent> & {
|
2796
|
+
data_decoded: DistributeRewardsEvent;
|
2797
|
+
type_arguments: [];
|
2798
|
+
};
|
2807
2799
|
|
2808
2800
|
export interface IncreaseLockup {
|
2809
2801
|
pool_address: MoveAddressType;
|
@@ -2821,11 +2813,10 @@ export namespace stake {
|
|
2821
2813
|
}
|
2822
2814
|
}
|
2823
2815
|
|
2824
|
-
export
|
2825
|
-
extends TypedEventInstance<IncreaseLockup> {
|
2816
|
+
export type IncreaseLockupInstance = TypedEventInstance<IncreaseLockup> & {
|
2826
2817
|
data_decoded: IncreaseLockup;
|
2827
2818
|
type_arguments: [];
|
2828
|
-
}
|
2819
|
+
};
|
2829
2820
|
|
2830
2821
|
export interface IncreaseLockupEvent {
|
2831
2822
|
pool_address: MoveAddressType;
|
@@ -2845,11 +2836,11 @@ export namespace stake {
|
|
2845
2836
|
}
|
2846
2837
|
}
|
2847
2838
|
|
2848
|
-
export
|
2849
|
-
|
2850
|
-
|
2851
|
-
|
2852
|
-
|
2839
|
+
export type IncreaseLockupEventInstance =
|
2840
|
+
TypedEventInstance<IncreaseLockupEvent> & {
|
2841
|
+
data_decoded: IncreaseLockupEvent;
|
2842
|
+
type_arguments: [];
|
2843
|
+
};
|
2853
2844
|
|
2854
2845
|
export interface IndividualValidatorPerformance {
|
2855
2846
|
successful_proposals: bigint;
|
@@ -2884,11 +2875,11 @@ export namespace stake {
|
|
2884
2875
|
}
|
2885
2876
|
}
|
2886
2877
|
|
2887
|
-
export
|
2888
|
-
|
2889
|
-
|
2890
|
-
|
2891
|
-
|
2878
|
+
export type JoinValidatorSetInstance =
|
2879
|
+
TypedEventInstance<JoinValidatorSet> & {
|
2880
|
+
data_decoded: JoinValidatorSet;
|
2881
|
+
type_arguments: [];
|
2882
|
+
};
|
2892
2883
|
|
2893
2884
|
export interface JoinValidatorSetEvent {
|
2894
2885
|
pool_address: MoveAddressType;
|
@@ -2906,11 +2897,11 @@ export namespace stake {
|
|
2906
2897
|
}
|
2907
2898
|
}
|
2908
2899
|
|
2909
|
-
export
|
2910
|
-
|
2911
|
-
|
2912
|
-
|
2913
|
-
|
2900
|
+
export type JoinValidatorSetEventInstance =
|
2901
|
+
TypedEventInstance<JoinValidatorSetEvent> & {
|
2902
|
+
data_decoded: JoinValidatorSetEvent;
|
2903
|
+
type_arguments: [];
|
2904
|
+
};
|
2914
2905
|
|
2915
2906
|
export interface LeaveValidatorSet {
|
2916
2907
|
pool_address: MoveAddressType;
|
@@ -2928,11 +2919,11 @@ export namespace stake {
|
|
2928
2919
|
}
|
2929
2920
|
}
|
2930
2921
|
|
2931
|
-
export
|
2932
|
-
|
2933
|
-
|
2934
|
-
|
2935
|
-
|
2922
|
+
export type LeaveValidatorSetInstance =
|
2923
|
+
TypedEventInstance<LeaveValidatorSet> & {
|
2924
|
+
data_decoded: LeaveValidatorSet;
|
2925
|
+
type_arguments: [];
|
2926
|
+
};
|
2936
2927
|
|
2937
2928
|
export interface LeaveValidatorSetEvent {
|
2938
2929
|
pool_address: MoveAddressType;
|
@@ -2950,11 +2941,11 @@ export namespace stake {
|
|
2950
2941
|
}
|
2951
2942
|
}
|
2952
2943
|
|
2953
|
-
export
|
2954
|
-
|
2955
|
-
|
2956
|
-
|
2957
|
-
|
2944
|
+
export type LeaveValidatorSetEventInstance =
|
2945
|
+
TypedEventInstance<LeaveValidatorSetEvent> & {
|
2946
|
+
data_decoded: LeaveValidatorSetEvent;
|
2947
|
+
type_arguments: [];
|
2948
|
+
};
|
2958
2949
|
|
2959
2950
|
export interface OwnerCapability {
|
2960
2951
|
pool_address: MoveAddressType;
|
@@ -2989,11 +2980,10 @@ export namespace stake {
|
|
2989
2980
|
}
|
2990
2981
|
}
|
2991
2982
|
|
2992
|
-
export
|
2993
|
-
extends TypedEventInstance<ReactivateStake> {
|
2983
|
+
export type ReactivateStakeInstance = TypedEventInstance<ReactivateStake> & {
|
2994
2984
|
data_decoded: ReactivateStake;
|
2995
2985
|
type_arguments: [];
|
2996
|
-
}
|
2986
|
+
};
|
2997
2987
|
|
2998
2988
|
export interface ReactivateStakeEvent {
|
2999
2989
|
pool_address: MoveAddressType;
|
@@ -3012,11 +3002,11 @@ export namespace stake {
|
|
3012
3002
|
}
|
3013
3003
|
}
|
3014
3004
|
|
3015
|
-
export
|
3016
|
-
|
3017
|
-
|
3018
|
-
|
3019
|
-
|
3005
|
+
export type ReactivateStakeEventInstance =
|
3006
|
+
TypedEventInstance<ReactivateStakeEvent> & {
|
3007
|
+
data_decoded: ReactivateStakeEvent;
|
3008
|
+
type_arguments: [];
|
3009
|
+
};
|
3020
3010
|
|
3021
3011
|
export interface RegisterValidatorCandidate {
|
3022
3012
|
pool_address: MoveAddressType;
|
@@ -3034,11 +3024,11 @@ export namespace stake {
|
|
3034
3024
|
}
|
3035
3025
|
}
|
3036
3026
|
|
3037
|
-
export
|
3038
|
-
|
3039
|
-
|
3040
|
-
|
3041
|
-
|
3027
|
+
export type RegisterValidatorCandidateInstance =
|
3028
|
+
TypedEventInstance<RegisterValidatorCandidate> & {
|
3029
|
+
data_decoded: RegisterValidatorCandidate;
|
3030
|
+
type_arguments: [];
|
3031
|
+
};
|
3042
3032
|
|
3043
3033
|
export interface RegisterValidatorCandidateEvent {
|
3044
3034
|
pool_address: MoveAddressType;
|
@@ -3056,11 +3046,11 @@ export namespace stake {
|
|
3056
3046
|
}
|
3057
3047
|
}
|
3058
3048
|
|
3059
|
-
export
|
3060
|
-
|
3061
|
-
|
3062
|
-
|
3063
|
-
|
3049
|
+
export type RegisterValidatorCandidateEventInstance =
|
3050
|
+
TypedEventInstance<RegisterValidatorCandidateEvent> & {
|
3051
|
+
data_decoded: RegisterValidatorCandidateEvent;
|
3052
|
+
type_arguments: [];
|
3053
|
+
};
|
3064
3054
|
|
3065
3055
|
export interface RotateConsensusKey {
|
3066
3056
|
pool_address: MoveAddressType;
|
@@ -3080,11 +3070,11 @@ export namespace stake {
|
|
3080
3070
|
}
|
3081
3071
|
}
|
3082
3072
|
|
3083
|
-
export
|
3084
|
-
|
3085
|
-
|
3086
|
-
|
3087
|
-
|
3073
|
+
export type RotateConsensusKeyInstance =
|
3074
|
+
TypedEventInstance<RotateConsensusKey> & {
|
3075
|
+
data_decoded: RotateConsensusKey;
|
3076
|
+
type_arguments: [];
|
3077
|
+
};
|
3088
3078
|
|
3089
3079
|
export interface RotateConsensusKeyEvent {
|
3090
3080
|
pool_address: MoveAddressType;
|
@@ -3104,11 +3094,11 @@ export namespace stake {
|
|
3104
3094
|
}
|
3105
3095
|
}
|
3106
3096
|
|
3107
|
-
export
|
3108
|
-
|
3109
|
-
|
3110
|
-
|
3111
|
-
|
3097
|
+
export type RotateConsensusKeyEventInstance =
|
3098
|
+
TypedEventInstance<RotateConsensusKeyEvent> & {
|
3099
|
+
data_decoded: RotateConsensusKeyEvent;
|
3100
|
+
type_arguments: [];
|
3101
|
+
};
|
3112
3102
|
|
3113
3103
|
export interface SetOperator {
|
3114
3104
|
pool_address: MoveAddressType;
|
@@ -3126,10 +3116,10 @@ export namespace stake {
|
|
3126
3116
|
}
|
3127
3117
|
}
|
3128
3118
|
|
3129
|
-
export
|
3119
|
+
export type SetOperatorInstance = TypedEventInstance<SetOperator> & {
|
3130
3120
|
data_decoded: SetOperator;
|
3131
3121
|
type_arguments: [];
|
3132
|
-
}
|
3122
|
+
};
|
3133
3123
|
|
3134
3124
|
export interface SetOperatorEvent {
|
3135
3125
|
pool_address: MoveAddressType;
|
@@ -3149,11 +3139,11 @@ export namespace stake {
|
|
3149
3139
|
}
|
3150
3140
|
}
|
3151
3141
|
|
3152
|
-
export
|
3153
|
-
|
3154
|
-
|
3155
|
-
|
3156
|
-
|
3142
|
+
export type SetOperatorEventInstance =
|
3143
|
+
TypedEventInstance<SetOperatorEvent> & {
|
3144
|
+
data_decoded: SetOperatorEvent;
|
3145
|
+
type_arguments: [];
|
3146
|
+
};
|
3157
3147
|
|
3158
3148
|
export interface StakePool {
|
3159
3149
|
active: coin.Coin<aptos_coin.AptosCoin>;
|
@@ -3202,10 +3192,10 @@ export namespace stake {
|
|
3202
3192
|
}
|
3203
3193
|
}
|
3204
3194
|
|
3205
|
-
export
|
3195
|
+
export type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
|
3206
3196
|
data_decoded: UnlockStake;
|
3207
3197
|
type_arguments: [];
|
3208
|
-
}
|
3198
|
+
};
|
3209
3199
|
|
3210
3200
|
export interface UnlockStakeEvent {
|
3211
3201
|
pool_address: MoveAddressType;
|
@@ -3224,11 +3214,11 @@ export namespace stake {
|
|
3224
3214
|
}
|
3225
3215
|
}
|
3226
3216
|
|
3227
|
-
export
|
3228
|
-
|
3229
|
-
|
3230
|
-
|
3231
|
-
|
3217
|
+
export type UnlockStakeEventInstance =
|
3218
|
+
TypedEventInstance<UnlockStakeEvent> & {
|
3219
|
+
data_decoded: UnlockStakeEvent;
|
3220
|
+
type_arguments: [];
|
3221
|
+
};
|
3232
3222
|
|
3233
3223
|
export interface UpdateNetworkAndFullnodeAddresses {
|
3234
3224
|
pool_address: MoveAddressType;
|
@@ -3250,11 +3240,11 @@ export namespace stake {
|
|
3250
3240
|
}
|
3251
3241
|
}
|
3252
3242
|
|
3253
|
-
export
|
3254
|
-
|
3255
|
-
|
3256
|
-
|
3257
|
-
|
3243
|
+
export type UpdateNetworkAndFullnodeAddressesInstance =
|
3244
|
+
TypedEventInstance<UpdateNetworkAndFullnodeAddresses> & {
|
3245
|
+
data_decoded: UpdateNetworkAndFullnodeAddresses;
|
3246
|
+
type_arguments: [];
|
3247
|
+
};
|
3258
3248
|
|
3259
3249
|
export interface UpdateNetworkAndFullnodeAddressesEvent {
|
3260
3250
|
pool_address: MoveAddressType;
|
@@ -3277,11 +3267,11 @@ export namespace stake {
|
|
3277
3267
|
}
|
3278
3268
|
}
|
3279
3269
|
|
3280
|
-
export
|
3281
|
-
|
3282
|
-
|
3283
|
-
|
3284
|
-
|
3270
|
+
export type UpdateNetworkAndFullnodeAddressesEventInstance =
|
3271
|
+
TypedEventInstance<UpdateNetworkAndFullnodeAddressesEvent> & {
|
3272
|
+
data_decoded: UpdateNetworkAndFullnodeAddressesEvent;
|
3273
|
+
type_arguments: [];
|
3274
|
+
};
|
3285
3275
|
|
3286
3276
|
export interface ValidatorConfig {
|
3287
3277
|
consensus_pubkey: string;
|
@@ -3382,11 +3372,10 @@ export namespace stake {
|
|
3382
3372
|
}
|
3383
3373
|
}
|
3384
3374
|
|
3385
|
-
export
|
3386
|
-
extends TypedEventInstance<WithdrawStake> {
|
3375
|
+
export type WithdrawStakeInstance = TypedEventInstance<WithdrawStake> & {
|
3387
3376
|
data_decoded: WithdrawStake;
|
3388
3377
|
type_arguments: [];
|
3389
|
-
}
|
3378
|
+
};
|
3390
3379
|
|
3391
3380
|
export interface WithdrawStakeEvent {
|
3392
3381
|
pool_address: MoveAddressType;
|
@@ -3405,11 +3394,11 @@ export namespace stake {
|
|
3405
3394
|
}
|
3406
3395
|
}
|
3407
3396
|
|
3408
|
-
export
|
3409
|
-
|
3410
|
-
|
3411
|
-
|
3412
|
-
|
3397
|
+
export type WithdrawStakeEventInstance =
|
3398
|
+
TypedEventInstance<WithdrawStakeEvent> & {
|
3399
|
+
data_decoded: WithdrawStakeEvent;
|
3400
|
+
type_arguments: [];
|
3401
|
+
};
|
3413
3402
|
|
3414
3403
|
export namespace entry {
|
3415
3404
|
export async function withdraw(
|
@@ -4350,10 +4339,10 @@ export namespace object$ {
|
|
4350
4339
|
}
|
4351
4340
|
}
|
4352
4341
|
|
4353
|
-
export
|
4342
|
+
export type TransferInstance = TypedEventInstance<Transfer> & {
|
4354
4343
|
data_decoded: Transfer;
|
4355
4344
|
type_arguments: [];
|
4356
|
-
}
|
4345
|
+
};
|
4357
4346
|
|
4358
4347
|
export interface TransferEvent {
|
4359
4348
|
object: MoveAddressType;
|
@@ -4371,11 +4360,10 @@ export namespace object$ {
|
|
4371
4360
|
}
|
4372
4361
|
}
|
4373
4362
|
|
4374
|
-
export
|
4375
|
-
extends TypedEventInstance<TransferEvent> {
|
4363
|
+
export type TransferEventInstance = TypedEventInstance<TransferEvent> & {
|
4376
4364
|
data_decoded: TransferEvent;
|
4377
4365
|
type_arguments: [];
|
4378
|
-
}
|
4366
|
+
};
|
4379
4367
|
|
4380
4368
|
export interface TransferRef {
|
4381
4369
|
self: MoveAddressType;
|
@@ -4756,11 +4744,10 @@ export namespace voting {
|
|
4756
4744
|
}
|
4757
4745
|
}
|
4758
4746
|
|
4759
|
-
export
|
4760
|
-
extends TypedEventInstance<CreateProposal> {
|
4747
|
+
export type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
|
4761
4748
|
data_decoded: CreateProposal;
|
4762
4749
|
type_arguments: [];
|
4763
|
-
}
|
4750
|
+
};
|
4764
4751
|
|
4765
4752
|
export interface CreateProposalEvent {
|
4766
4753
|
proposal_id: bigint;
|
@@ -4783,11 +4770,11 @@ export namespace voting {
|
|
4783
4770
|
}
|
4784
4771
|
}
|
4785
4772
|
|
4786
|
-
export
|
4787
|
-
|
4788
|
-
|
4789
|
-
|
4790
|
-
|
4773
|
+
export type CreateProposalEventInstance =
|
4774
|
+
TypedEventInstance<CreateProposalEvent> & {
|
4775
|
+
data_decoded: CreateProposalEvent;
|
4776
|
+
type_arguments: [];
|
4777
|
+
};
|
4791
4778
|
|
4792
4779
|
export interface Proposal<T0> {
|
4793
4780
|
proposer: MoveAddressType;
|
@@ -4831,11 +4818,10 @@ export namespace voting {
|
|
4831
4818
|
}
|
4832
4819
|
}
|
4833
4820
|
|
4834
|
-
export
|
4835
|
-
extends TypedEventInstance<RegisterForum> {
|
4821
|
+
export type RegisterForumInstance = TypedEventInstance<RegisterForum> & {
|
4836
4822
|
data_decoded: RegisterForum;
|
4837
4823
|
type_arguments: [];
|
4838
|
-
}
|
4824
|
+
};
|
4839
4825
|
|
4840
4826
|
export interface RegisterForumEvent {
|
4841
4827
|
hosting_account: MoveAddressType;
|
@@ -4854,11 +4840,11 @@ export namespace voting {
|
|
4854
4840
|
}
|
4855
4841
|
}
|
4856
4842
|
|
4857
|
-
export
|
4858
|
-
|
4859
|
-
|
4860
|
-
|
4861
|
-
|
4843
|
+
export type RegisterForumEventInstance =
|
4844
|
+
TypedEventInstance<RegisterForumEvent> & {
|
4845
|
+
data_decoded: RegisterForumEvent;
|
4846
|
+
type_arguments: [];
|
4847
|
+
};
|
4862
4848
|
|
4863
4849
|
export interface ResolveProposal {
|
4864
4850
|
proposal_id: bigint;
|
@@ -4879,11 +4865,10 @@ export namespace voting {
|
|
4879
4865
|
}
|
4880
4866
|
}
|
4881
4867
|
|
4882
|
-
export
|
4883
|
-
extends TypedEventInstance<ResolveProposal> {
|
4868
|
+
export type ResolveProposalInstance = TypedEventInstance<ResolveProposal> & {
|
4884
4869
|
data_decoded: ResolveProposal;
|
4885
4870
|
type_arguments: [];
|
4886
|
-
}
|
4871
|
+
};
|
4887
4872
|
|
4888
4873
|
export interface Vote {
|
4889
4874
|
proposal_id: bigint;
|
@@ -4900,10 +4885,10 @@ export namespace voting {
|
|
4900
4885
|
}
|
4901
4886
|
}
|
4902
4887
|
|
4903
|
-
export
|
4888
|
+
export type VoteInstance = TypedEventInstance<Vote> & {
|
4904
4889
|
data_decoded: Vote;
|
4905
4890
|
type_arguments: [];
|
4906
|
-
}
|
4891
|
+
};
|
4907
4892
|
|
4908
4893
|
export interface VoteEvent {
|
4909
4894
|
proposal_id: bigint;
|
@@ -4920,10 +4905,10 @@ export namespace voting {
|
|
4920
4905
|
}
|
4921
4906
|
}
|
4922
4907
|
|
4923
|
-
export
|
4908
|
+
export type VoteEventInstance = TypedEventInstance<VoteEvent> & {
|
4924
4909
|
data_decoded: VoteEvent;
|
4925
4910
|
type_arguments: [];
|
4926
|
-
}
|
4911
|
+
};
|
4927
4912
|
|
4928
4913
|
export interface VotingEvents {
|
4929
4914
|
create_proposal_events: event.EventHandle<voting.CreateProposalEvent>;
|
@@ -5590,11 +5575,10 @@ export namespace account {
|
|
5590
5575
|
}
|
5591
5576
|
}
|
5592
5577
|
|
5593
|
-
export
|
5594
|
-
extends TypedEventInstance<CoinRegister> {
|
5578
|
+
export type CoinRegisterInstance = TypedEventInstance<CoinRegister> & {
|
5595
5579
|
data_decoded: CoinRegister;
|
5596
5580
|
type_arguments: [];
|
5597
|
-
}
|
5581
|
+
};
|
5598
5582
|
|
5599
5583
|
export interface CoinRegisterEvent {
|
5600
5584
|
type_info: type_info.TypeInfo;
|
@@ -5612,11 +5596,11 @@ export namespace account {
|
|
5612
5596
|
}
|
5613
5597
|
}
|
5614
5598
|
|
5615
|
-
export
|
5616
|
-
|
5617
|
-
|
5618
|
-
|
5619
|
-
|
5599
|
+
export type CoinRegisterEventInstance =
|
5600
|
+
TypedEventInstance<CoinRegisterEvent> & {
|
5601
|
+
data_decoded: CoinRegisterEvent;
|
5602
|
+
type_arguments: [];
|
5603
|
+
};
|
5620
5604
|
|
5621
5605
|
export interface KeyRotation {
|
5622
5606
|
account: MoveAddressType;
|
@@ -5634,10 +5618,10 @@ export namespace account {
|
|
5634
5618
|
}
|
5635
5619
|
}
|
5636
5620
|
|
5637
|
-
export
|
5621
|
+
export type KeyRotationInstance = TypedEventInstance<KeyRotation> & {
|
5638
5622
|
data_decoded: KeyRotation;
|
5639
5623
|
type_arguments: [];
|
5640
|
-
}
|
5624
|
+
};
|
5641
5625
|
|
5642
5626
|
export interface KeyRotationEvent {
|
5643
5627
|
old_authentication_key: string;
|
@@ -5656,11 +5640,11 @@ export namespace account {
|
|
5656
5640
|
}
|
5657
5641
|
}
|
5658
5642
|
|
5659
|
-
export
|
5660
|
-
|
5661
|
-
|
5662
|
-
|
5663
|
-
|
5643
|
+
export type KeyRotationEventInstance =
|
5644
|
+
TypedEventInstance<KeyRotationEvent> & {
|
5645
|
+
data_decoded: KeyRotationEvent;
|
5646
|
+
type_arguments: [];
|
5647
|
+
};
|
5664
5648
|
|
5665
5649
|
export interface OriginatingAddress {
|
5666
5650
|
address_map: table.Table<MoveAddressType, MoveAddressType>;
|
@@ -7148,10 +7132,10 @@ export namespace vesting {
|
|
7148
7132
|
}
|
7149
7133
|
}
|
7150
7134
|
|
7151
|
-
export
|
7135
|
+
export type DistributeInstance = TypedEventInstance<Distribute> & {
|
7152
7136
|
data_decoded: Distribute;
|
7153
7137
|
type_arguments: [];
|
7154
|
-
}
|
7138
|
+
};
|
7155
7139
|
|
7156
7140
|
export interface DistributeEvent {
|
7157
7141
|
admin: MoveAddressType;
|
@@ -7171,11 +7155,10 @@ export namespace vesting {
|
|
7171
7155
|
}
|
7172
7156
|
}
|
7173
7157
|
|
7174
|
-
export
|
7175
|
-
extends TypedEventInstance<DistributeEvent> {
|
7158
|
+
export type DistributeEventInstance = TypedEventInstance<DistributeEvent> & {
|
7176
7159
|
data_decoded: DistributeEvent;
|
7177
7160
|
type_arguments: [];
|
7178
|
-
}
|
7161
|
+
};
|
7179
7162
|
|
7180
7163
|
export interface ResetLockup {
|
7181
7164
|
admin: MoveAddressType;
|
@@ -7194,10 +7177,10 @@ export namespace vesting {
|
|
7194
7177
|
}
|
7195
7178
|
}
|
7196
7179
|
|
7197
|
-
export
|
7180
|
+
export type ResetLockupInstance = TypedEventInstance<ResetLockup> & {
|
7198
7181
|
data_decoded: ResetLockup;
|
7199
7182
|
type_arguments: [];
|
7200
|
-
}
|
7183
|
+
};
|
7201
7184
|
|
7202
7185
|
export interface ResetLockupEvent {
|
7203
7186
|
admin: MoveAddressType;
|
@@ -7218,11 +7201,11 @@ export namespace vesting {
|
|
7218
7201
|
}
|
7219
7202
|
}
|
7220
7203
|
|
7221
|
-
export
|
7222
|
-
|
7223
|
-
|
7224
|
-
|
7225
|
-
|
7204
|
+
export type ResetLockupEventInstance =
|
7205
|
+
TypedEventInstance<ResetLockupEvent> & {
|
7206
|
+
data_decoded: ResetLockupEvent;
|
7207
|
+
type_arguments: [];
|
7208
|
+
};
|
7226
7209
|
|
7227
7210
|
export interface UpdateVoter {
|
7228
7211
|
admin: MoveAddressType;
|
@@ -7242,10 +7225,10 @@ export namespace vesting {
|
|
7242
7225
|
}
|
7243
7226
|
}
|
7244
7227
|
|
7245
|
-
export
|
7228
|
+
export type UpdateVoterInstance = TypedEventInstance<UpdateVoter> & {
|
7246
7229
|
data_decoded: UpdateVoter;
|
7247
7230
|
type_arguments: [];
|
7248
|
-
}
|
7231
|
+
};
|
7249
7232
|
|
7250
7233
|
export interface UpdateVoterEvent {
|
7251
7234
|
admin: MoveAddressType;
|
@@ -7267,11 +7250,11 @@ export namespace vesting {
|
|
7267
7250
|
}
|
7268
7251
|
}
|
7269
7252
|
|
7270
|
-
export
|
7271
|
-
|
7272
|
-
|
7273
|
-
|
7274
|
-
|
7253
|
+
export type UpdateVoterEventInstance =
|
7254
|
+
TypedEventInstance<UpdateVoterEvent> & {
|
7255
|
+
data_decoded: UpdateVoterEvent;
|
7256
|
+
type_arguments: [];
|
7257
|
+
};
|
7275
7258
|
|
7276
7259
|
export interface AdminStore {
|
7277
7260
|
vesting_contracts: MoveAddressType[];
|
@@ -7305,11 +7288,10 @@ export namespace vesting {
|
|
7305
7288
|
}
|
7306
7289
|
}
|
7307
7290
|
|
7308
|
-
export
|
7309
|
-
extends TypedEventInstance<AdminWithdraw> {
|
7291
|
+
export type AdminWithdrawInstance = TypedEventInstance<AdminWithdraw> & {
|
7310
7292
|
data_decoded: AdminWithdraw;
|
7311
7293
|
type_arguments: [];
|
7312
|
-
}
|
7294
|
+
};
|
7313
7295
|
|
7314
7296
|
export interface AdminWithdrawEvent {
|
7315
7297
|
admin: MoveAddressType;
|
@@ -7329,11 +7311,11 @@ export namespace vesting {
|
|
7329
7311
|
}
|
7330
7312
|
}
|
7331
7313
|
|
7332
|
-
export
|
7333
|
-
|
7334
|
-
|
7335
|
-
|
7336
|
-
|
7314
|
+
export type AdminWithdrawEventInstance =
|
7315
|
+
TypedEventInstance<AdminWithdrawEvent> & {
|
7316
|
+
data_decoded: AdminWithdrawEvent;
|
7317
|
+
type_arguments: [];
|
7318
|
+
};
|
7337
7319
|
|
7338
7320
|
export interface CreateVestingContract {
|
7339
7321
|
operator: MoveAddressType;
|
@@ -7357,11 +7339,11 @@ export namespace vesting {
|
|
7357
7339
|
}
|
7358
7340
|
}
|
7359
7341
|
|
7360
|
-
export
|
7361
|
-
|
7362
|
-
|
7363
|
-
|
7364
|
-
|
7342
|
+
export type CreateVestingContractInstance =
|
7343
|
+
TypedEventInstance<CreateVestingContract> & {
|
7344
|
+
data_decoded: CreateVestingContract;
|
7345
|
+
type_arguments: [];
|
7346
|
+
};
|
7365
7347
|
|
7366
7348
|
export interface CreateVestingContractEvent {
|
7367
7349
|
operator: MoveAddressType;
|
@@ -7385,11 +7367,11 @@ export namespace vesting {
|
|
7385
7367
|
}
|
7386
7368
|
}
|
7387
7369
|
|
7388
|
-
export
|
7389
|
-
|
7390
|
-
|
7391
|
-
|
7392
|
-
|
7370
|
+
export type CreateVestingContractEventInstance =
|
7371
|
+
TypedEventInstance<CreateVestingContractEvent> & {
|
7372
|
+
data_decoded: CreateVestingContractEvent;
|
7373
|
+
type_arguments: [];
|
7374
|
+
};
|
7393
7375
|
|
7394
7376
|
export interface SetBeneficiary {
|
7395
7377
|
admin: MoveAddressType;
|
@@ -7409,11 +7391,10 @@ export namespace vesting {
|
|
7409
7391
|
}
|
7410
7392
|
}
|
7411
7393
|
|
7412
|
-
export
|
7413
|
-
extends TypedEventInstance<SetBeneficiary> {
|
7394
|
+
export type SetBeneficiaryInstance = TypedEventInstance<SetBeneficiary> & {
|
7414
7395
|
data_decoded: SetBeneficiary;
|
7415
7396
|
type_arguments: [];
|
7416
|
-
}
|
7397
|
+
};
|
7417
7398
|
|
7418
7399
|
export interface SetBeneficiaryEvent {
|
7419
7400
|
admin: MoveAddressType;
|
@@ -7435,11 +7416,11 @@ export namespace vesting {
|
|
7435
7416
|
}
|
7436
7417
|
}
|
7437
7418
|
|
7438
|
-
export
|
7439
|
-
|
7440
|
-
|
7441
|
-
|
7442
|
-
|
7419
|
+
export type SetBeneficiaryEventInstance =
|
7420
|
+
TypedEventInstance<SetBeneficiaryEvent> & {
|
7421
|
+
data_decoded: SetBeneficiaryEvent;
|
7422
|
+
type_arguments: [];
|
7423
|
+
};
|
7443
7424
|
|
7444
7425
|
export interface StakingInfo {
|
7445
7426
|
pool_address: MoveAddressType;
|
@@ -7473,10 +7454,10 @@ export namespace vesting {
|
|
7473
7454
|
}
|
7474
7455
|
}
|
7475
7456
|
|
7476
|
-
export
|
7457
|
+
export type TerminateInstance = TypedEventInstance<Terminate> & {
|
7477
7458
|
data_decoded: Terminate;
|
7478
7459
|
type_arguments: [];
|
7479
|
-
}
|
7460
|
+
};
|
7480
7461
|
|
7481
7462
|
export interface TerminateEvent {
|
7482
7463
|
admin: MoveAddressType;
|
@@ -7493,11 +7474,10 @@ export namespace vesting {
|
|
7493
7474
|
}
|
7494
7475
|
}
|
7495
7476
|
|
7496
|
-
export
|
7497
|
-
extends TypedEventInstance<TerminateEvent> {
|
7477
|
+
export type TerminateEventInstance = TypedEventInstance<TerminateEvent> & {
|
7498
7478
|
data_decoded: TerminateEvent;
|
7499
7479
|
type_arguments: [];
|
7500
|
-
}
|
7480
|
+
};
|
7501
7481
|
|
7502
7482
|
export interface UnlockRewards {
|
7503
7483
|
admin: MoveAddressType;
|
@@ -7516,11 +7496,10 @@ export namespace vesting {
|
|
7516
7496
|
}
|
7517
7497
|
}
|
7518
7498
|
|
7519
|
-
export
|
7520
|
-
extends TypedEventInstance<UnlockRewards> {
|
7499
|
+
export type UnlockRewardsInstance = TypedEventInstance<UnlockRewards> & {
|
7521
7500
|
data_decoded: UnlockRewards;
|
7522
7501
|
type_arguments: [];
|
7523
|
-
}
|
7502
|
+
};
|
7524
7503
|
|
7525
7504
|
export interface UnlockRewardsEvent {
|
7526
7505
|
admin: MoveAddressType;
|
@@ -7541,11 +7520,11 @@ export namespace vesting {
|
|
7541
7520
|
}
|
7542
7521
|
}
|
7543
7522
|
|
7544
|
-
export
|
7545
|
-
|
7546
|
-
|
7547
|
-
|
7548
|
-
|
7523
|
+
export type UnlockRewardsEventInstance =
|
7524
|
+
TypedEventInstance<UnlockRewardsEvent> & {
|
7525
|
+
data_decoded: UnlockRewardsEvent;
|
7526
|
+
type_arguments: [];
|
7527
|
+
};
|
7549
7528
|
|
7550
7529
|
export interface UpdateOperator {
|
7551
7530
|
admin: MoveAddressType;
|
@@ -7566,11 +7545,10 @@ export namespace vesting {
|
|
7566
7545
|
}
|
7567
7546
|
}
|
7568
7547
|
|
7569
|
-
export
|
7570
|
-
extends TypedEventInstance<UpdateOperator> {
|
7548
|
+
export type UpdateOperatorInstance = TypedEventInstance<UpdateOperator> & {
|
7571
7549
|
data_decoded: UpdateOperator;
|
7572
7550
|
type_arguments: [];
|
7573
|
-
}
|
7551
|
+
};
|
7574
7552
|
|
7575
7553
|
export interface UpdateOperatorEvent {
|
7576
7554
|
admin: MoveAddressType;
|
@@ -7593,11 +7571,11 @@ export namespace vesting {
|
|
7593
7571
|
}
|
7594
7572
|
}
|
7595
7573
|
|
7596
|
-
export
|
7597
|
-
|
7598
|
-
|
7599
|
-
|
7600
|
-
|
7574
|
+
export type UpdateOperatorEventInstance =
|
7575
|
+
TypedEventInstance<UpdateOperatorEvent> & {
|
7576
|
+
data_decoded: UpdateOperatorEvent;
|
7577
|
+
type_arguments: [];
|
7578
|
+
};
|
7601
7579
|
|
7602
7580
|
export interface Vest {
|
7603
7581
|
admin: MoveAddressType;
|
@@ -7617,10 +7595,10 @@ export namespace vesting {
|
|
7617
7595
|
}
|
7618
7596
|
}
|
7619
7597
|
|
7620
|
-
export
|
7598
|
+
export type VestInstance = TypedEventInstance<Vest> & {
|
7621
7599
|
data_decoded: Vest;
|
7622
7600
|
type_arguments: [];
|
7623
|
-
}
|
7601
|
+
};
|
7624
7602
|
|
7625
7603
|
export interface VestEvent {
|
7626
7604
|
admin: MoveAddressType;
|
@@ -7640,10 +7618,10 @@ export namespace vesting {
|
|
7640
7618
|
}
|
7641
7619
|
}
|
7642
7620
|
|
7643
|
-
export
|
7621
|
+
export type VestEventInstance = TypedEventInstance<VestEvent> & {
|
7644
7622
|
data_decoded: VestEvent;
|
7645
7623
|
type_arguments: [];
|
7646
|
-
}
|
7624
|
+
};
|
7647
7625
|
|
7648
7626
|
export interface VestingAccountManagement {
|
7649
7627
|
roles: simple_map.SimpleMap<string, MoveAddressType>;
|
@@ -9356,11 +9334,11 @@ export namespace randomness {
|
|
9356
9334
|
}
|
9357
9335
|
}
|
9358
9336
|
|
9359
|
-
export
|
9360
|
-
|
9361
|
-
|
9362
|
-
|
9363
|
-
|
9337
|
+
export type RandomnessGeneratedEventInstance =
|
9338
|
+
TypedEventInstance<RandomnessGeneratedEvent> & {
|
9339
|
+
data_decoded: RandomnessGeneratedEvent;
|
9340
|
+
type_arguments: [];
|
9341
|
+
};
|
9364
9342
|
|
9365
9343
|
export namespace entry {}
|
9366
9344
|
export namespace view {}
|
@@ -10354,11 +10332,11 @@ export namespace aptos_account {
|
|
10354
10332
|
}
|
10355
10333
|
}
|
10356
10334
|
|
10357
|
-
export
|
10358
|
-
|
10359
|
-
|
10360
|
-
|
10361
|
-
|
10335
|
+
export type DirectCoinTransferConfigUpdatedInstance =
|
10336
|
+
TypedEventInstance<DirectCoinTransferConfigUpdated> & {
|
10337
|
+
data_decoded: DirectCoinTransferConfigUpdated;
|
10338
|
+
type_arguments: [];
|
10339
|
+
};
|
10362
10340
|
|
10363
10341
|
export interface DirectCoinTransferConfigUpdatedEvent {
|
10364
10342
|
new_allow_direct_transfers: boolean;
|
@@ -10377,11 +10355,11 @@ export namespace aptos_account {
|
|
10377
10355
|
}
|
10378
10356
|
}
|
10379
10357
|
|
10380
|
-
export
|
10381
|
-
|
10382
|
-
|
10383
|
-
|
10384
|
-
|
10358
|
+
export type DirectCoinTransferConfigUpdatedEventInstance =
|
10359
|
+
TypedEventInstance<DirectCoinTransferConfigUpdatedEvent> & {
|
10360
|
+
data_decoded: DirectCoinTransferConfigUpdatedEvent;
|
10361
|
+
type_arguments: [];
|
10362
|
+
};
|
10385
10363
|
|
10386
10364
|
export interface DirectTransferConfig {
|
10387
10365
|
allow_arbitrary_coin_transfers: boolean;
|
@@ -11779,10 +11757,10 @@ export namespace fungible_asset {
|
|
11779
11757
|
}
|
11780
11758
|
}
|
11781
11759
|
|
11782
|
-
export
|
11760
|
+
export type DepositInstance = TypedEventInstance<Deposit> & {
|
11783
11761
|
data_decoded: Deposit;
|
11784
11762
|
type_arguments: [];
|
11785
|
-
}
|
11763
|
+
};
|
11786
11764
|
|
11787
11765
|
export interface DepositEvent {
|
11788
11766
|
amount: bigint;
|
@@ -11798,11 +11776,10 @@ export namespace fungible_asset {
|
|
11798
11776
|
}
|
11799
11777
|
}
|
11800
11778
|
|
11801
|
-
export
|
11802
|
-
extends TypedEventInstance<DepositEvent> {
|
11779
|
+
export type DepositEventInstance = TypedEventInstance<DepositEvent> & {
|
11803
11780
|
data_decoded: DepositEvent;
|
11804
11781
|
type_arguments: [];
|
11805
|
-
}
|
11782
|
+
};
|
11806
11783
|
|
11807
11784
|
export interface DeriveSupply {
|
11808
11785
|
dispatch_function: option.Option<function_info.FunctionInfo>;
|
@@ -11851,10 +11828,10 @@ export namespace fungible_asset {
|
|
11851
11828
|
}
|
11852
11829
|
}
|
11853
11830
|
|
11854
|
-
export
|
11831
|
+
export type FrozenInstance = TypedEventInstance<Frozen> & {
|
11855
11832
|
data_decoded: Frozen;
|
11856
11833
|
type_arguments: [];
|
11857
|
-
}
|
11834
|
+
};
|
11858
11835
|
|
11859
11836
|
export interface FrozenEvent {
|
11860
11837
|
frozen: boolean;
|
@@ -11870,10 +11847,10 @@ export namespace fungible_asset {
|
|
11870
11847
|
}
|
11871
11848
|
}
|
11872
11849
|
|
11873
|
-
export
|
11850
|
+
export type FrozenEventInstance = TypedEventInstance<FrozenEvent> & {
|
11874
11851
|
data_decoded: FrozenEvent;
|
11875
11852
|
type_arguments: [];
|
11876
|
-
}
|
11853
|
+
};
|
11877
11854
|
|
11878
11855
|
export interface FungibleAsset {
|
11879
11856
|
metadata: object$.Object<fungible_asset.Metadata>;
|
@@ -12002,10 +11979,10 @@ export namespace fungible_asset {
|
|
12002
11979
|
}
|
12003
11980
|
}
|
12004
11981
|
|
12005
|
-
export
|
11982
|
+
export type WithdrawInstance = TypedEventInstance<Withdraw> & {
|
12006
11983
|
data_decoded: Withdraw;
|
12007
11984
|
type_arguments: [];
|
12008
|
-
}
|
11985
|
+
};
|
12009
11986
|
|
12010
11987
|
export interface WithdrawEvent {
|
12011
11988
|
amount: bigint;
|
@@ -12021,11 +11998,10 @@ export namespace fungible_asset {
|
|
12021
11998
|
}
|
12022
11999
|
}
|
12023
12000
|
|
12024
|
-
export
|
12025
|
-
extends TypedEventInstance<WithdrawEvent> {
|
12001
|
+
export type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
|
12026
12002
|
data_decoded: WithdrawEvent;
|
12027
12003
|
type_arguments: [];
|
12028
|
-
}
|
12004
|
+
};
|
12029
12005
|
|
12030
12006
|
export namespace entry {
|
12031
12007
|
export async function transfer<T0 = any>(
|
@@ -13198,11 +13174,10 @@ export namespace delegation_pool {
|
|
13198
13174
|
}
|
13199
13175
|
}
|
13200
13176
|
|
13201
|
-
export
|
13202
|
-
extends TypedEventInstance<CreateProposal> {
|
13177
|
+
export type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
|
13203
13178
|
data_decoded: CreateProposal;
|
13204
13179
|
type_arguments: [];
|
13205
|
-
}
|
13180
|
+
};
|
13206
13181
|
|
13207
13182
|
export interface CreateProposalEvent {
|
13208
13183
|
proposal_id: bigint;
|
@@ -13222,11 +13197,11 @@ export namespace delegation_pool {
|
|
13222
13197
|
}
|
13223
13198
|
}
|
13224
13199
|
|
13225
|
-
export
|
13226
|
-
|
13227
|
-
|
13228
|
-
|
13229
|
-
|
13200
|
+
export type CreateProposalEventInstance =
|
13201
|
+
TypedEventInstance<CreateProposalEvent> & {
|
13202
|
+
data_decoded: CreateProposalEvent;
|
13203
|
+
type_arguments: [];
|
13204
|
+
};
|
13230
13205
|
|
13231
13206
|
export interface Vote {
|
13232
13207
|
voter: MoveAddressType;
|
@@ -13246,10 +13221,10 @@ export namespace delegation_pool {
|
|
13246
13221
|
}
|
13247
13222
|
}
|
13248
13223
|
|
13249
|
-
export
|
13224
|
+
export type VoteInstance = TypedEventInstance<Vote> & {
|
13250
13225
|
data_decoded: Vote;
|
13251
13226
|
type_arguments: [];
|
13252
|
-
}
|
13227
|
+
};
|
13253
13228
|
|
13254
13229
|
export interface VoteEvent {
|
13255
13230
|
voter: MoveAddressType;
|
@@ -13269,10 +13244,10 @@ export namespace delegation_pool {
|
|
13269
13244
|
}
|
13270
13245
|
}
|
13271
13246
|
|
13272
|
-
export
|
13247
|
+
export type VoteEventInstance = TypedEventInstance<VoteEvent> & {
|
13273
13248
|
data_decoded: VoteEvent;
|
13274
13249
|
type_arguments: [];
|
13275
|
-
}
|
13250
|
+
};
|
13276
13251
|
|
13277
13252
|
export interface AddStake {
|
13278
13253
|
pool_address: MoveAddressType;
|
@@ -13291,10 +13266,10 @@ export namespace delegation_pool {
|
|
13291
13266
|
}
|
13292
13267
|
}
|
13293
13268
|
|
13294
|
-
export
|
13269
|
+
export type AddStakeInstance = TypedEventInstance<AddStake> & {
|
13295
13270
|
data_decoded: AddStake;
|
13296
13271
|
type_arguments: [];
|
13297
|
-
}
|
13272
|
+
};
|
13298
13273
|
|
13299
13274
|
export interface AddStakeEvent {
|
13300
13275
|
pool_address: MoveAddressType;
|
@@ -13313,11 +13288,10 @@ export namespace delegation_pool {
|
|
13313
13288
|
}
|
13314
13289
|
}
|
13315
13290
|
|
13316
|
-
export
|
13317
|
-
extends TypedEventInstance<AddStakeEvent> {
|
13291
|
+
export type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
|
13318
13292
|
data_decoded: AddStakeEvent;
|
13319
13293
|
type_arguments: [];
|
13320
|
-
}
|
13294
|
+
};
|
13321
13295
|
|
13322
13296
|
export interface ReactivateStake {
|
13323
13297
|
pool_address: MoveAddressType;
|
@@ -13337,11 +13311,10 @@ export namespace delegation_pool {
|
|
13337
13311
|
}
|
13338
13312
|
}
|
13339
13313
|
|
13340
|
-
export
|
13341
|
-
extends TypedEventInstance<ReactivateStake> {
|
13314
|
+
export type ReactivateStakeInstance = TypedEventInstance<ReactivateStake> & {
|
13342
13315
|
data_decoded: ReactivateStake;
|
13343
13316
|
type_arguments: [];
|
13344
|
-
}
|
13317
|
+
};
|
13345
13318
|
|
13346
13319
|
export interface ReactivateStakeEvent {
|
13347
13320
|
pool_address: MoveAddressType;
|
@@ -13361,11 +13334,11 @@ export namespace delegation_pool {
|
|
13361
13334
|
}
|
13362
13335
|
}
|
13363
13336
|
|
13364
|
-
export
|
13365
|
-
|
13366
|
-
|
13367
|
-
|
13368
|
-
|
13337
|
+
export type ReactivateStakeEventInstance =
|
13338
|
+
TypedEventInstance<ReactivateStakeEvent> & {
|
13339
|
+
data_decoded: ReactivateStakeEvent;
|
13340
|
+
type_arguments: [];
|
13341
|
+
};
|
13369
13342
|
|
13370
13343
|
export interface UnlockStake {
|
13371
13344
|
pool_address: MoveAddressType;
|
@@ -13383,10 +13356,10 @@ export namespace delegation_pool {
|
|
13383
13356
|
}
|
13384
13357
|
}
|
13385
13358
|
|
13386
|
-
export
|
13359
|
+
export type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
|
13387
13360
|
data_decoded: UnlockStake;
|
13388
13361
|
type_arguments: [];
|
13389
|
-
}
|
13362
|
+
};
|
13390
13363
|
|
13391
13364
|
export interface UnlockStakeEvent {
|
13392
13365
|
pool_address: MoveAddressType;
|
@@ -13406,11 +13379,11 @@ export namespace delegation_pool {
|
|
13406
13379
|
}
|
13407
13380
|
}
|
13408
13381
|
|
13409
|
-
export
|
13410
|
-
|
13411
|
-
|
13412
|
-
|
13413
|
-
|
13382
|
+
export type UnlockStakeEventInstance =
|
13383
|
+
TypedEventInstance<UnlockStakeEvent> & {
|
13384
|
+
data_decoded: UnlockStakeEvent;
|
13385
|
+
type_arguments: [];
|
13386
|
+
};
|
13414
13387
|
|
13415
13388
|
export interface WithdrawStake {
|
13416
13389
|
pool_address: MoveAddressType;
|
@@ -13428,11 +13401,10 @@ export namespace delegation_pool {
|
|
13428
13401
|
}
|
13429
13402
|
}
|
13430
13403
|
|
13431
|
-
export
|
13432
|
-
extends TypedEventInstance<WithdrawStake> {
|
13404
|
+
export type WithdrawStakeInstance = TypedEventInstance<WithdrawStake> & {
|
13433
13405
|
data_decoded: WithdrawStake;
|
13434
13406
|
type_arguments: [];
|
13435
|
-
}
|
13407
|
+
};
|
13436
13408
|
|
13437
13409
|
export interface WithdrawStakeEvent {
|
13438
13410
|
pool_address: MoveAddressType;
|
@@ -13452,11 +13424,11 @@ export namespace delegation_pool {
|
|
13452
13424
|
}
|
13453
13425
|
}
|
13454
13426
|
|
13455
|
-
export
|
13456
|
-
|
13457
|
-
|
13458
|
-
|
13459
|
-
|
13427
|
+
export type WithdrawStakeEventInstance =
|
13428
|
+
TypedEventInstance<WithdrawStakeEvent> & {
|
13429
|
+
data_decoded: WithdrawStakeEvent;
|
13430
|
+
type_arguments: [];
|
13431
|
+
};
|
13460
13432
|
|
13461
13433
|
export interface AllowlistDelegator {
|
13462
13434
|
pool_address: MoveAddressType;
|
@@ -13475,11 +13447,11 @@ export namespace delegation_pool {
|
|
13475
13447
|
}
|
13476
13448
|
}
|
13477
13449
|
|
13478
|
-
export
|
13479
|
-
|
13480
|
-
|
13481
|
-
|
13482
|
-
|
13450
|
+
export type AllowlistDelegatorInstance =
|
13451
|
+
TypedEventInstance<AllowlistDelegator> & {
|
13452
|
+
data_decoded: AllowlistDelegator;
|
13453
|
+
type_arguments: [];
|
13454
|
+
};
|
13483
13455
|
|
13484
13456
|
export interface BeneficiaryForOperator {
|
13485
13457
|
beneficiary_for_operator: MoveAddressType;
|
@@ -13516,11 +13488,11 @@ export namespace delegation_pool {
|
|
13516
13488
|
}
|
13517
13489
|
}
|
13518
13490
|
|
13519
|
-
export
|
13520
|
-
|
13521
|
-
|
13522
|
-
|
13523
|
-
|
13491
|
+
export type CommissionPercentageChangeInstance =
|
13492
|
+
TypedEventInstance<CommissionPercentageChange> & {
|
13493
|
+
data_decoded: CommissionPercentageChange;
|
13494
|
+
type_arguments: [];
|
13495
|
+
};
|
13524
13496
|
|
13525
13497
|
export interface DelegateVotingPower {
|
13526
13498
|
pool_address: MoveAddressType;
|
@@ -13540,11 +13512,11 @@ export namespace delegation_pool {
|
|
13540
13512
|
}
|
13541
13513
|
}
|
13542
13514
|
|
13543
|
-
export
|
13544
|
-
|
13545
|
-
|
13546
|
-
|
13547
|
-
|
13515
|
+
export type DelegateVotingPowerInstance =
|
13516
|
+
TypedEventInstance<DelegateVotingPower> & {
|
13517
|
+
data_decoded: DelegateVotingPower;
|
13518
|
+
type_arguments: [];
|
13519
|
+
};
|
13548
13520
|
|
13549
13521
|
export interface DelegateVotingPowerEvent {
|
13550
13522
|
pool_address: MoveAddressType;
|
@@ -13564,11 +13536,11 @@ export namespace delegation_pool {
|
|
13564
13536
|
}
|
13565
13537
|
}
|
13566
13538
|
|
13567
|
-
export
|
13568
|
-
|
13569
|
-
|
13570
|
-
|
13571
|
-
|
13539
|
+
export type DelegateVotingPowerEventInstance =
|
13540
|
+
TypedEventInstance<DelegateVotingPowerEvent> & {
|
13541
|
+
data_decoded: DelegateVotingPowerEvent;
|
13542
|
+
type_arguments: [];
|
13543
|
+
};
|
13572
13544
|
|
13573
13545
|
export interface DelegatedVotes {
|
13574
13546
|
active_shares: bigint;
|
@@ -13668,11 +13640,11 @@ export namespace delegation_pool {
|
|
13668
13640
|
}
|
13669
13641
|
}
|
13670
13642
|
|
13671
|
-
export
|
13672
|
-
|
13673
|
-
|
13674
|
-
|
13675
|
-
|
13643
|
+
export type DisableDelegatorsAllowlistingInstance =
|
13644
|
+
TypedEventInstance<DisableDelegatorsAllowlisting> & {
|
13645
|
+
data_decoded: DisableDelegatorsAllowlisting;
|
13646
|
+
type_arguments: [];
|
13647
|
+
};
|
13676
13648
|
|
13677
13649
|
export interface DistributeCommission {
|
13678
13650
|
pool_address: MoveAddressType;
|
@@ -13694,11 +13666,11 @@ export namespace delegation_pool {
|
|
13694
13666
|
}
|
13695
13667
|
}
|
13696
13668
|
|
13697
|
-
export
|
13698
|
-
|
13699
|
-
|
13700
|
-
|
13701
|
-
|
13669
|
+
export type DistributeCommissionInstance =
|
13670
|
+
TypedEventInstance<DistributeCommission> & {
|
13671
|
+
data_decoded: DistributeCommission;
|
13672
|
+
type_arguments: [];
|
13673
|
+
};
|
13702
13674
|
|
13703
13675
|
export interface DistributeCommissionEvent {
|
13704
13676
|
pool_address: MoveAddressType;
|
@@ -13719,11 +13691,11 @@ export namespace delegation_pool {
|
|
13719
13691
|
}
|
13720
13692
|
}
|
13721
13693
|
|
13722
|
-
export
|
13723
|
-
|
13724
|
-
|
13725
|
-
|
13726
|
-
|
13694
|
+
export type DistributeCommissionEventInstance =
|
13695
|
+
TypedEventInstance<DistributeCommissionEvent> & {
|
13696
|
+
data_decoded: DistributeCommissionEvent;
|
13697
|
+
type_arguments: [];
|
13698
|
+
};
|
13727
13699
|
|
13728
13700
|
export interface EnableDelegatorsAllowlisting {
|
13729
13701
|
pool_address: MoveAddressType;
|
@@ -13742,11 +13714,11 @@ export namespace delegation_pool {
|
|
13742
13714
|
}
|
13743
13715
|
}
|
13744
13716
|
|
13745
|
-
export
|
13746
|
-
|
13747
|
-
|
13748
|
-
|
13749
|
-
|
13717
|
+
export type EnableDelegatorsAllowlistingInstance =
|
13718
|
+
TypedEventInstance<EnableDelegatorsAllowlisting> & {
|
13719
|
+
data_decoded: EnableDelegatorsAllowlisting;
|
13720
|
+
type_arguments: [];
|
13721
|
+
};
|
13750
13722
|
|
13751
13723
|
export interface EvictDelegator {
|
13752
13724
|
pool_address: MoveAddressType;
|
@@ -13763,11 +13735,10 @@ export namespace delegation_pool {
|
|
13763
13735
|
}
|
13764
13736
|
}
|
13765
13737
|
|
13766
|
-
export
|
13767
|
-
extends TypedEventInstance<EvictDelegator> {
|
13738
|
+
export type EvictDelegatorInstance = TypedEventInstance<EvictDelegator> & {
|
13768
13739
|
data_decoded: EvictDelegator;
|
13769
13740
|
type_arguments: [];
|
13770
|
-
}
|
13741
|
+
};
|
13771
13742
|
|
13772
13743
|
export interface GovernanceRecords {
|
13773
13744
|
votes: smart_table.SmartTable<delegation_pool.VotingRecordKey, bigint>;
|
@@ -13848,11 +13819,11 @@ export namespace delegation_pool {
|
|
13848
13819
|
}
|
13849
13820
|
}
|
13850
13821
|
|
13851
|
-
export
|
13852
|
-
|
13853
|
-
|
13854
|
-
|
13855
|
-
|
13822
|
+
export type RemoveDelegatorFromAllowlistInstance =
|
13823
|
+
TypedEventInstance<RemoveDelegatorFromAllowlist> & {
|
13824
|
+
data_decoded: RemoveDelegatorFromAllowlist;
|
13825
|
+
type_arguments: [];
|
13826
|
+
};
|
13856
13827
|
|
13857
13828
|
export interface SetBeneficiaryForOperator {
|
13858
13829
|
operator: MoveAddressType;
|
@@ -13872,11 +13843,11 @@ export namespace delegation_pool {
|
|
13872
13843
|
}
|
13873
13844
|
}
|
13874
13845
|
|
13875
|
-
export
|
13876
|
-
|
13877
|
-
|
13878
|
-
|
13879
|
-
|
13846
|
+
export type SetBeneficiaryForOperatorInstance =
|
13847
|
+
TypedEventInstance<SetBeneficiaryForOperator> & {
|
13848
|
+
data_decoded: SetBeneficiaryForOperator;
|
13849
|
+
type_arguments: [];
|
13850
|
+
};
|
13880
13851
|
|
13881
13852
|
export interface VoteDelegation {
|
13882
13853
|
voter: MoveAddressType;
|
@@ -15181,10 +15152,10 @@ export namespace reconfiguration {
|
|
15181
15152
|
}
|
15182
15153
|
}
|
15183
15154
|
|
15184
|
-
export
|
15155
|
+
export type NewEpochInstance = TypedEventInstance<NewEpoch> & {
|
15185
15156
|
data_decoded: NewEpoch;
|
15186
15157
|
type_arguments: [];
|
15187
|
-
}
|
15158
|
+
};
|
15188
15159
|
|
15189
15160
|
export interface NewEpochEvent {
|
15190
15161
|
epoch: bigint;
|
@@ -15200,11 +15171,10 @@ export namespace reconfiguration {
|
|
15200
15171
|
}
|
15201
15172
|
}
|
15202
15173
|
|
15203
|
-
export
|
15204
|
-
extends TypedEventInstance<NewEpochEvent> {
|
15174
|
+
export type NewEpochEventInstance = TypedEventInstance<NewEpochEvent> & {
|
15205
15175
|
data_decoded: NewEpochEvent;
|
15206
15176
|
type_arguments: [];
|
15207
|
-
}
|
15177
|
+
};
|
15208
15178
|
|
15209
15179
|
export namespace entry {}
|
15210
15180
|
export namespace view {}
|
@@ -15346,11 +15316,10 @@ export namespace transaction_fee {
|
|
15346
15316
|
}
|
15347
15317
|
}
|
15348
15318
|
|
15349
|
-
export
|
15350
|
-
extends TypedEventInstance<FeeStatement> {
|
15319
|
+
export type FeeStatementInstance = TypedEventInstance<FeeStatement> & {
|
15351
15320
|
data_decoded: FeeStatement;
|
15352
15321
|
type_arguments: [];
|
15353
|
-
}
|
15322
|
+
};
|
15354
15323
|
|
15355
15324
|
export namespace entry {
|
15356
15325
|
export async function convertToAptosFaBurnRef(
|
@@ -15690,11 +15659,10 @@ export namespace aptos_governance {
|
|
15690
15659
|
}
|
15691
15660
|
}
|
15692
15661
|
|
15693
|
-
export
|
15694
|
-
extends TypedEventInstance<CreateProposal> {
|
15662
|
+
export type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
|
15695
15663
|
data_decoded: CreateProposal;
|
15696
15664
|
type_arguments: [];
|
15697
|
-
}
|
15665
|
+
};
|
15698
15666
|
|
15699
15667
|
export interface CreateProposalEvent {
|
15700
15668
|
proposer: MoveAddressType;
|
@@ -15716,11 +15684,11 @@ export namespace aptos_governance {
|
|
15716
15684
|
}
|
15717
15685
|
}
|
15718
15686
|
|
15719
|
-
export
|
15720
|
-
|
15721
|
-
|
15722
|
-
|
15723
|
-
|
15687
|
+
export type CreateProposalEventInstance =
|
15688
|
+
TypedEventInstance<CreateProposalEvent> & {
|
15689
|
+
data_decoded: CreateProposalEvent;
|
15690
|
+
type_arguments: [];
|
15691
|
+
};
|
15724
15692
|
|
15725
15693
|
export interface Vote {
|
15726
15694
|
proposal_id: bigint;
|
@@ -15740,10 +15708,10 @@ export namespace aptos_governance {
|
|
15740
15708
|
}
|
15741
15709
|
}
|
15742
15710
|
|
15743
|
-
export
|
15711
|
+
export type VoteInstance = TypedEventInstance<Vote> & {
|
15744
15712
|
data_decoded: Vote;
|
15745
15713
|
type_arguments: [];
|
15746
|
-
}
|
15714
|
+
};
|
15747
15715
|
|
15748
15716
|
export interface VoteEvent {
|
15749
15717
|
proposal_id: bigint;
|
@@ -15763,10 +15731,10 @@ export namespace aptos_governance {
|
|
15763
15731
|
}
|
15764
15732
|
}
|
15765
15733
|
|
15766
|
-
export
|
15734
|
+
export type VoteEventInstance = TypedEventInstance<VoteEvent> & {
|
15767
15735
|
data_decoded: VoteEvent;
|
15768
15736
|
type_arguments: [];
|
15769
|
-
}
|
15737
|
+
};
|
15770
15738
|
|
15771
15739
|
export interface ApprovedExecutionHashes {
|
15772
15740
|
hashes: simple_map.SimpleMap<bigint, string>;
|
@@ -15870,11 +15838,10 @@ export namespace aptos_governance {
|
|
15870
15838
|
}
|
15871
15839
|
}
|
15872
15840
|
|
15873
|
-
export
|
15874
|
-
extends TypedEventInstance<UpdateConfig> {
|
15841
|
+
export type UpdateConfigInstance = TypedEventInstance<UpdateConfig> & {
|
15875
15842
|
data_decoded: UpdateConfig;
|
15876
15843
|
type_arguments: [];
|
15877
|
-
}
|
15844
|
+
};
|
15878
15845
|
|
15879
15846
|
export interface UpdateConfigEvent {
|
15880
15847
|
min_voting_threshold: bigint;
|
@@ -15894,11 +15861,11 @@ export namespace aptos_governance {
|
|
15894
15861
|
}
|
15895
15862
|
}
|
15896
15863
|
|
15897
|
-
export
|
15898
|
-
|
15899
|
-
|
15900
|
-
|
15901
|
-
|
15864
|
+
export type UpdateConfigEventInstance =
|
15865
|
+
TypedEventInstance<UpdateConfigEvent> & {
|
15866
|
+
data_decoded: UpdateConfigEvent;
|
15867
|
+
type_arguments: [];
|
15868
|
+
};
|
15902
15869
|
|
15903
15870
|
export interface VotingRecords {
|
15904
15871
|
votes: table.Table<aptos_governance.RecordKey, boolean>;
|
@@ -17417,10 +17384,10 @@ export namespace multisig_account {
|
|
17417
17384
|
}
|
17418
17385
|
}
|
17419
17386
|
|
17420
|
-
export
|
17387
|
+
export type VoteInstance = TypedEventInstance<Vote> & {
|
17421
17388
|
data_decoded: Vote;
|
17422
17389
|
type_arguments: [];
|
17423
|
-
}
|
17390
|
+
};
|
17424
17391
|
|
17425
17392
|
export interface VoteEvent {
|
17426
17393
|
owner: MoveAddressType;
|
@@ -17438,10 +17405,10 @@ export namespace multisig_account {
|
|
17438
17405
|
}
|
17439
17406
|
}
|
17440
17407
|
|
17441
|
-
export
|
17408
|
+
export type VoteEventInstance = TypedEventInstance<VoteEvent> & {
|
17442
17409
|
data_decoded: VoteEvent;
|
17443
17410
|
type_arguments: [];
|
17444
|
-
}
|
17411
|
+
};
|
17445
17412
|
|
17446
17413
|
export interface AddOwners {
|
17447
17414
|
multisig_account: MoveAddressType;
|
@@ -17458,10 +17425,10 @@ export namespace multisig_account {
|
|
17458
17425
|
}
|
17459
17426
|
}
|
17460
17427
|
|
17461
|
-
export
|
17428
|
+
export type AddOwnersInstance = TypedEventInstance<AddOwners> & {
|
17462
17429
|
data_decoded: AddOwners;
|
17463
17430
|
type_arguments: [];
|
17464
|
-
}
|
17431
|
+
};
|
17465
17432
|
|
17466
17433
|
export interface AddOwnersEvent {
|
17467
17434
|
owners_added: MoveAddressType[];
|
@@ -17477,11 +17444,10 @@ export namespace multisig_account {
|
|
17477
17444
|
}
|
17478
17445
|
}
|
17479
17446
|
|
17480
|
-
export
|
17481
|
-
extends TypedEventInstance<AddOwnersEvent> {
|
17447
|
+
export type AddOwnersEventInstance = TypedEventInstance<AddOwnersEvent> & {
|
17482
17448
|
data_decoded: AddOwnersEvent;
|
17483
17449
|
type_arguments: [];
|
17484
|
-
}
|
17450
|
+
};
|
17485
17451
|
|
17486
17452
|
export interface CreateTransaction {
|
17487
17453
|
multisig_account: MoveAddressType;
|
@@ -17502,11 +17468,11 @@ export namespace multisig_account {
|
|
17502
17468
|
}
|
17503
17469
|
}
|
17504
17470
|
|
17505
|
-
export
|
17506
|
-
|
17507
|
-
|
17508
|
-
|
17509
|
-
|
17471
|
+
export type CreateTransactionInstance =
|
17472
|
+
TypedEventInstance<CreateTransaction> & {
|
17473
|
+
data_decoded: CreateTransaction;
|
17474
|
+
type_arguments: [];
|
17475
|
+
};
|
17510
17476
|
|
17511
17477
|
export interface CreateTransactionEvent {
|
17512
17478
|
creator: MoveAddressType;
|
@@ -17526,11 +17492,11 @@ export namespace multisig_account {
|
|
17526
17492
|
}
|
17527
17493
|
}
|
17528
17494
|
|
17529
|
-
export
|
17530
|
-
|
17531
|
-
|
17532
|
-
|
17533
|
-
|
17495
|
+
export type CreateTransactionEventInstance =
|
17496
|
+
TypedEventInstance<CreateTransactionEvent> & {
|
17497
|
+
data_decoded: CreateTransactionEvent;
|
17498
|
+
type_arguments: [];
|
17499
|
+
};
|
17534
17500
|
|
17535
17501
|
export interface ExecuteRejectedTransaction {
|
17536
17502
|
multisig_account: MoveAddressType;
|
@@ -17552,11 +17518,11 @@ export namespace multisig_account {
|
|
17552
17518
|
}
|
17553
17519
|
}
|
17554
17520
|
|
17555
|
-
export
|
17556
|
-
|
17557
|
-
|
17558
|
-
|
17559
|
-
|
17521
|
+
export type ExecuteRejectedTransactionInstance =
|
17522
|
+
TypedEventInstance<ExecuteRejectedTransaction> & {
|
17523
|
+
data_decoded: ExecuteRejectedTransaction;
|
17524
|
+
type_arguments: [];
|
17525
|
+
};
|
17560
17526
|
|
17561
17527
|
export interface ExecuteRejectedTransactionEvent {
|
17562
17528
|
sequence_number: bigint;
|
@@ -17577,11 +17543,11 @@ export namespace multisig_account {
|
|
17577
17543
|
}
|
17578
17544
|
}
|
17579
17545
|
|
17580
|
-
export
|
17581
|
-
|
17582
|
-
|
17583
|
-
|
17584
|
-
|
17546
|
+
export type ExecuteRejectedTransactionEventInstance =
|
17547
|
+
TypedEventInstance<ExecuteRejectedTransactionEvent> & {
|
17548
|
+
data_decoded: ExecuteRejectedTransactionEvent;
|
17549
|
+
type_arguments: [];
|
17550
|
+
};
|
17585
17551
|
|
17586
17552
|
export interface ExecutionError {
|
17587
17553
|
abort_location: string;
|
@@ -17617,11 +17583,10 @@ export namespace multisig_account {
|
|
17617
17583
|
}
|
17618
17584
|
}
|
17619
17585
|
|
17620
|
-
export
|
17621
|
-
extends TypedEventInstance<MetadataUpdated> {
|
17586
|
+
export type MetadataUpdatedInstance = TypedEventInstance<MetadataUpdated> & {
|
17622
17587
|
data_decoded: MetadataUpdated;
|
17623
17588
|
type_arguments: [];
|
17624
|
-
}
|
17589
|
+
};
|
17625
17590
|
|
17626
17591
|
export interface MetadataUpdatedEvent {
|
17627
17592
|
old_metadata: simple_map.SimpleMap<string, string>;
|
@@ -17640,11 +17605,11 @@ export namespace multisig_account {
|
|
17640
17605
|
}
|
17641
17606
|
}
|
17642
17607
|
|
17643
|
-
export
|
17644
|
-
|
17645
|
-
|
17646
|
-
|
17647
|
-
|
17608
|
+
export type MetadataUpdatedEventInstance =
|
17609
|
+
TypedEventInstance<MetadataUpdatedEvent> & {
|
17610
|
+
data_decoded: MetadataUpdatedEvent;
|
17611
|
+
type_arguments: [];
|
17612
|
+
};
|
17648
17613
|
|
17649
17614
|
export interface MultisigAccount {
|
17650
17615
|
owners: MoveAddressType[];
|
@@ -17755,11 +17720,10 @@ export namespace multisig_account {
|
|
17755
17720
|
}
|
17756
17721
|
}
|
17757
17722
|
|
17758
|
-
export
|
17759
|
-
extends TypedEventInstance<RemoveOwners> {
|
17723
|
+
export type RemoveOwnersInstance = TypedEventInstance<RemoveOwners> & {
|
17760
17724
|
data_decoded: RemoveOwners;
|
17761
17725
|
type_arguments: [];
|
17762
|
-
}
|
17726
|
+
};
|
17763
17727
|
|
17764
17728
|
export interface RemoveOwnersEvent {
|
17765
17729
|
owners_removed: MoveAddressType[];
|
@@ -17777,11 +17741,11 @@ export namespace multisig_account {
|
|
17777
17741
|
}
|
17778
17742
|
}
|
17779
17743
|
|
17780
|
-
export
|
17781
|
-
|
17782
|
-
|
17783
|
-
|
17784
|
-
|
17744
|
+
export type RemoveOwnersEventInstance =
|
17745
|
+
TypedEventInstance<RemoveOwnersEvent> & {
|
17746
|
+
data_decoded: RemoveOwnersEvent;
|
17747
|
+
type_arguments: [];
|
17748
|
+
};
|
17785
17749
|
|
17786
17750
|
export interface TransactionExecutionFailed {
|
17787
17751
|
multisig_account: MoveAddressType;
|
@@ -17805,11 +17769,11 @@ export namespace multisig_account {
|
|
17805
17769
|
}
|
17806
17770
|
}
|
17807
17771
|
|
17808
|
-
export
|
17809
|
-
|
17810
|
-
|
17811
|
-
|
17812
|
-
|
17772
|
+
export type TransactionExecutionFailedInstance =
|
17773
|
+
TypedEventInstance<TransactionExecutionFailed> & {
|
17774
|
+
data_decoded: TransactionExecutionFailed;
|
17775
|
+
type_arguments: [];
|
17776
|
+
};
|
17813
17777
|
|
17814
17778
|
export interface TransactionExecutionFailedEvent {
|
17815
17779
|
executor: MoveAddressType;
|
@@ -17832,11 +17796,11 @@ export namespace multisig_account {
|
|
17832
17796
|
}
|
17833
17797
|
}
|
17834
17798
|
|
17835
|
-
export
|
17836
|
-
|
17837
|
-
|
17838
|
-
|
17839
|
-
|
17799
|
+
export type TransactionExecutionFailedEventInstance =
|
17800
|
+
TypedEventInstance<TransactionExecutionFailedEvent> & {
|
17801
|
+
data_decoded: TransactionExecutionFailedEvent;
|
17802
|
+
type_arguments: [];
|
17803
|
+
};
|
17840
17804
|
|
17841
17805
|
export interface TransactionExecutionSucceeded {
|
17842
17806
|
multisig_account: MoveAddressType;
|
@@ -17859,11 +17823,11 @@ export namespace multisig_account {
|
|
17859
17823
|
}
|
17860
17824
|
}
|
17861
17825
|
|
17862
|
-
export
|
17863
|
-
|
17864
|
-
|
17865
|
-
|
17866
|
-
|
17826
|
+
export type TransactionExecutionSucceededInstance =
|
17827
|
+
TypedEventInstance<TransactionExecutionSucceeded> & {
|
17828
|
+
data_decoded: TransactionExecutionSucceeded;
|
17829
|
+
type_arguments: [];
|
17830
|
+
};
|
17867
17831
|
|
17868
17832
|
export interface TransactionExecutionSucceededEvent {
|
17869
17833
|
executor: MoveAddressType;
|
@@ -17885,11 +17849,11 @@ export namespace multisig_account {
|
|
17885
17849
|
}
|
17886
17850
|
}
|
17887
17851
|
|
17888
|
-
export
|
17889
|
-
|
17890
|
-
|
17891
|
-
|
17892
|
-
|
17852
|
+
export type TransactionExecutionSucceededEventInstance =
|
17853
|
+
TypedEventInstance<TransactionExecutionSucceededEvent> & {
|
17854
|
+
data_decoded: TransactionExecutionSucceededEvent;
|
17855
|
+
type_arguments: [];
|
17856
|
+
};
|
17893
17857
|
|
17894
17858
|
export interface UpdateSignaturesRequired {
|
17895
17859
|
multisig_account: MoveAddressType;
|
@@ -17909,11 +17873,11 @@ export namespace multisig_account {
|
|
17909
17873
|
}
|
17910
17874
|
}
|
17911
17875
|
|
17912
|
-
export
|
17913
|
-
|
17914
|
-
|
17915
|
-
|
17916
|
-
|
17876
|
+
export type UpdateSignaturesRequiredInstance =
|
17877
|
+
TypedEventInstance<UpdateSignaturesRequired> & {
|
17878
|
+
data_decoded: UpdateSignaturesRequired;
|
17879
|
+
type_arguments: [];
|
17880
|
+
};
|
17917
17881
|
|
17918
17882
|
export interface UpdateSignaturesRequiredEvent {
|
17919
17883
|
old_num_signatures_required: bigint;
|
@@ -17933,11 +17897,11 @@ export namespace multisig_account {
|
|
17933
17897
|
}
|
17934
17898
|
}
|
17935
17899
|
|
17936
|
-
export
|
17937
|
-
|
17938
|
-
|
17939
|
-
|
17940
|
-
|
17900
|
+
export type UpdateSignaturesRequiredEventInstance =
|
17901
|
+
TypedEventInstance<UpdateSignaturesRequiredEvent> & {
|
17902
|
+
data_decoded: UpdateSignaturesRequiredEvent;
|
17903
|
+
type_arguments: [];
|
17904
|
+
};
|
17941
17905
|
|
17942
17906
|
export namespace entry {
|
17943
17907
|
export async function create(
|
@@ -19940,10 +19904,10 @@ export namespace staking_contract {
|
|
19940
19904
|
}
|
19941
19905
|
}
|
19942
19906
|
|
19943
|
-
export
|
19907
|
+
export type AddStakeInstance = TypedEventInstance<AddStake> & {
|
19944
19908
|
data_decoded: AddStake;
|
19945
19909
|
type_arguments: [];
|
19946
|
-
}
|
19910
|
+
};
|
19947
19911
|
|
19948
19912
|
export interface AddStakeEvent {
|
19949
19913
|
operator: MoveAddressType;
|
@@ -19961,11 +19925,10 @@ export namespace staking_contract {
|
|
19961
19925
|
}
|
19962
19926
|
}
|
19963
19927
|
|
19964
|
-
export
|
19965
|
-
extends TypedEventInstance<AddStakeEvent> {
|
19928
|
+
export type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
|
19966
19929
|
data_decoded: AddStakeEvent;
|
19967
19930
|
type_arguments: [];
|
19968
|
-
}
|
19931
|
+
};
|
19969
19932
|
|
19970
19933
|
export interface UnlockStake {
|
19971
19934
|
operator: MoveAddressType;
|
@@ -19984,10 +19947,10 @@ export namespace staking_contract {
|
|
19984
19947
|
}
|
19985
19948
|
}
|
19986
19949
|
|
19987
|
-
export
|
19950
|
+
export type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
|
19988
19951
|
data_decoded: UnlockStake;
|
19989
19952
|
type_arguments: [];
|
19990
|
-
}
|
19953
|
+
};
|
19991
19954
|
|
19992
19955
|
export interface UnlockStakeEvent {
|
19993
19956
|
operator: MoveAddressType;
|
@@ -20008,11 +19971,11 @@ export namespace staking_contract {
|
|
20008
19971
|
}
|
20009
19972
|
}
|
20010
19973
|
|
20011
|
-
export
|
20012
|
-
|
20013
|
-
|
20014
|
-
|
20015
|
-
|
19974
|
+
export type UnlockStakeEventInstance =
|
19975
|
+
TypedEventInstance<UnlockStakeEvent> & {
|
19976
|
+
data_decoded: UnlockStakeEvent;
|
19977
|
+
type_arguments: [];
|
19978
|
+
};
|
20016
19979
|
|
20017
19980
|
export interface BeneficiaryForOperator {
|
20018
19981
|
beneficiary_for_operator: MoveAddressType;
|
@@ -20049,11 +20012,11 @@ export namespace staking_contract {
|
|
20049
20012
|
}
|
20050
20013
|
}
|
20051
20014
|
|
20052
|
-
export
|
20053
|
-
|
20054
|
-
|
20055
|
-
|
20056
|
-
|
20015
|
+
export type SetBeneficiaryForOperatorInstance =
|
20016
|
+
TypedEventInstance<SetBeneficiaryForOperator> & {
|
20017
|
+
data_decoded: SetBeneficiaryForOperator;
|
20018
|
+
type_arguments: [];
|
20019
|
+
};
|
20057
20020
|
|
20058
20021
|
export interface AddDistribution {
|
20059
20022
|
operator: MoveAddressType;
|
@@ -20073,11 +20036,10 @@ export namespace staking_contract {
|
|
20073
20036
|
}
|
20074
20037
|
}
|
20075
20038
|
|
20076
|
-
export
|
20077
|
-
extends TypedEventInstance<AddDistribution> {
|
20039
|
+
export type AddDistributionInstance = TypedEventInstance<AddDistribution> & {
|
20078
20040
|
data_decoded: AddDistribution;
|
20079
20041
|
type_arguments: [];
|
20080
|
-
}
|
20042
|
+
};
|
20081
20043
|
|
20082
20044
|
export interface AddDistributionEvent {
|
20083
20045
|
operator: MoveAddressType;
|
@@ -20097,11 +20059,11 @@ export namespace staking_contract {
|
|
20097
20059
|
}
|
20098
20060
|
}
|
20099
20061
|
|
20100
|
-
export
|
20101
|
-
|
20102
|
-
|
20103
|
-
|
20104
|
-
|
20062
|
+
export type AddDistributionEventInstance =
|
20063
|
+
TypedEventInstance<AddDistributionEvent> & {
|
20064
|
+
data_decoded: AddDistributionEvent;
|
20065
|
+
type_arguments: [];
|
20066
|
+
};
|
20105
20067
|
|
20106
20068
|
export interface CreateStakingContract {
|
20107
20069
|
operator: MoveAddressType;
|
@@ -20123,11 +20085,11 @@ export namespace staking_contract {
|
|
20123
20085
|
}
|
20124
20086
|
}
|
20125
20087
|
|
20126
|
-
export
|
20127
|
-
|
20128
|
-
|
20129
|
-
|
20130
|
-
|
20088
|
+
export type CreateStakingContractInstance =
|
20089
|
+
TypedEventInstance<CreateStakingContract> & {
|
20090
|
+
data_decoded: CreateStakingContract;
|
20091
|
+
type_arguments: [];
|
20092
|
+
};
|
20131
20093
|
|
20132
20094
|
export interface CreateStakingContractEvent {
|
20133
20095
|
operator: MoveAddressType;
|
@@ -20150,11 +20112,11 @@ export namespace staking_contract {
|
|
20150
20112
|
}
|
20151
20113
|
}
|
20152
20114
|
|
20153
|
-
export
|
20154
|
-
|
20155
|
-
|
20156
|
-
|
20157
|
-
|
20115
|
+
export type CreateStakingContractEventInstance =
|
20116
|
+
TypedEventInstance<CreateStakingContractEvent> & {
|
20117
|
+
data_decoded: CreateStakingContractEvent;
|
20118
|
+
type_arguments: [];
|
20119
|
+
};
|
20158
20120
|
|
20159
20121
|
export interface Distribute {
|
20160
20122
|
operator: MoveAddressType;
|
@@ -20173,10 +20135,10 @@ export namespace staking_contract {
|
|
20173
20135
|
}
|
20174
20136
|
}
|
20175
20137
|
|
20176
|
-
export
|
20138
|
+
export type DistributeInstance = TypedEventInstance<Distribute> & {
|
20177
20139
|
data_decoded: Distribute;
|
20178
20140
|
type_arguments: [];
|
20179
|
-
}
|
20141
|
+
};
|
20180
20142
|
|
20181
20143
|
export interface DistributeEvent {
|
20182
20144
|
operator: MoveAddressType;
|
@@ -20197,11 +20159,10 @@ export namespace staking_contract {
|
|
20197
20159
|
}
|
20198
20160
|
}
|
20199
20161
|
|
20200
|
-
export
|
20201
|
-
extends TypedEventInstance<DistributeEvent> {
|
20162
|
+
export type DistributeEventInstance = TypedEventInstance<DistributeEvent> & {
|
20202
20163
|
data_decoded: DistributeEvent;
|
20203
20164
|
type_arguments: [];
|
20204
|
-
}
|
20165
|
+
};
|
20205
20166
|
|
20206
20167
|
export interface RequestCommission {
|
20207
20168
|
operator: MoveAddressType;
|
@@ -20222,11 +20183,11 @@ export namespace staking_contract {
|
|
20222
20183
|
}
|
20223
20184
|
}
|
20224
20185
|
|
20225
|
-
export
|
20226
|
-
|
20227
|
-
|
20228
|
-
|
20229
|
-
|
20186
|
+
export type RequestCommissionInstance =
|
20187
|
+
TypedEventInstance<RequestCommission> & {
|
20188
|
+
data_decoded: RequestCommission;
|
20189
|
+
type_arguments: [];
|
20190
|
+
};
|
20230
20191
|
|
20231
20192
|
export interface RequestCommissionEvent {
|
20232
20193
|
operator: MoveAddressType;
|
@@ -20247,11 +20208,11 @@ export namespace staking_contract {
|
|
20247
20208
|
}
|
20248
20209
|
}
|
20249
20210
|
|
20250
|
-
export
|
20251
|
-
|
20252
|
-
|
20253
|
-
|
20254
|
-
|
20211
|
+
export type RequestCommissionEventInstance =
|
20212
|
+
TypedEventInstance<RequestCommissionEvent> & {
|
20213
|
+
data_decoded: RequestCommissionEvent;
|
20214
|
+
type_arguments: [];
|
20215
|
+
};
|
20255
20216
|
|
20256
20217
|
export interface ResetLockup {
|
20257
20218
|
operator: MoveAddressType;
|
@@ -20268,10 +20229,10 @@ export namespace staking_contract {
|
|
20268
20229
|
}
|
20269
20230
|
}
|
20270
20231
|
|
20271
|
-
export
|
20232
|
+
export type ResetLockupInstance = TypedEventInstance<ResetLockup> & {
|
20272
20233
|
data_decoded: ResetLockup;
|
20273
20234
|
type_arguments: [];
|
20274
|
-
}
|
20235
|
+
};
|
20275
20236
|
|
20276
20237
|
export interface ResetLockupEvent {
|
20277
20238
|
operator: MoveAddressType;
|
@@ -20290,11 +20251,11 @@ export namespace staking_contract {
|
|
20290
20251
|
}
|
20291
20252
|
}
|
20292
20253
|
|
20293
|
-
export
|
20294
|
-
|
20295
|
-
|
20296
|
-
|
20297
|
-
|
20254
|
+
export type ResetLockupEventInstance =
|
20255
|
+
TypedEventInstance<ResetLockupEvent> & {
|
20256
|
+
data_decoded: ResetLockupEvent;
|
20257
|
+
type_arguments: [];
|
20258
|
+
};
|
20298
20259
|
|
20299
20260
|
export interface StakingContract {
|
20300
20261
|
principal: bigint;
|
@@ -20350,11 +20311,11 @@ export namespace staking_contract {
|
|
20350
20311
|
}
|
20351
20312
|
}
|
20352
20313
|
|
20353
|
-
export
|
20354
|
-
|
20355
|
-
|
20356
|
-
|
20357
|
-
|
20314
|
+
export type StakingGroupUpdateCommissionEventInstance =
|
20315
|
+
TypedEventInstance<StakingGroupUpdateCommissionEvent> & {
|
20316
|
+
data_decoded: StakingGroupUpdateCommissionEvent;
|
20317
|
+
type_arguments: [];
|
20318
|
+
};
|
20358
20319
|
|
20359
20320
|
export interface Store {
|
20360
20321
|
staking_contracts: simple_map.SimpleMap<
|
@@ -20398,11 +20359,10 @@ export namespace staking_contract {
|
|
20398
20359
|
}
|
20399
20360
|
}
|
20400
20361
|
|
20401
|
-
export
|
20402
|
-
extends TypedEventInstance<SwitchOperator> {
|
20362
|
+
export type SwitchOperatorInstance = TypedEventInstance<SwitchOperator> & {
|
20403
20363
|
data_decoded: SwitchOperator;
|
20404
20364
|
type_arguments: [];
|
20405
|
-
}
|
20365
|
+
};
|
20406
20366
|
|
20407
20367
|
export interface SwitchOperatorEvent {
|
20408
20368
|
old_operator: MoveAddressType;
|
@@ -20422,11 +20382,11 @@ export namespace staking_contract {
|
|
20422
20382
|
}
|
20423
20383
|
}
|
20424
20384
|
|
20425
|
-
export
|
20426
|
-
|
20427
|
-
|
20428
|
-
|
20429
|
-
|
20385
|
+
export type SwitchOperatorEventInstance =
|
20386
|
+
TypedEventInstance<SwitchOperatorEvent> & {
|
20387
|
+
data_decoded: SwitchOperatorEvent;
|
20388
|
+
type_arguments: [];
|
20389
|
+
};
|
20430
20390
|
|
20431
20391
|
export interface UpdateCommission {
|
20432
20392
|
staker: MoveAddressType;
|
@@ -20447,11 +20407,11 @@ export namespace staking_contract {
|
|
20447
20407
|
}
|
20448
20408
|
}
|
20449
20409
|
|
20450
|
-
export
|
20451
|
-
|
20452
|
-
|
20453
|
-
|
20454
|
-
|
20410
|
+
export type UpdateCommissionInstance =
|
20411
|
+
TypedEventInstance<UpdateCommission> & {
|
20412
|
+
data_decoded: UpdateCommission;
|
20413
|
+
type_arguments: [];
|
20414
|
+
};
|
20455
20415
|
|
20456
20416
|
export interface UpdateCommissionEvent {
|
20457
20417
|
staker: MoveAddressType;
|
@@ -20472,11 +20432,11 @@ export namespace staking_contract {
|
|
20472
20432
|
}
|
20473
20433
|
}
|
20474
20434
|
|
20475
|
-
export
|
20476
|
-
|
20477
|
-
|
20478
|
-
|
20479
|
-
|
20435
|
+
export type UpdateCommissionEventInstance =
|
20436
|
+
TypedEventInstance<UpdateCommissionEvent> & {
|
20437
|
+
data_decoded: UpdateCommissionEvent;
|
20438
|
+
type_arguments: [];
|
20439
|
+
};
|
20480
20440
|
|
20481
20441
|
export interface UpdateVoter {
|
20482
20442
|
operator: MoveAddressType;
|
@@ -20495,10 +20455,10 @@ export namespace staking_contract {
|
|
20495
20455
|
}
|
20496
20456
|
}
|
20497
20457
|
|
20498
|
-
export
|
20458
|
+
export type UpdateVoterInstance = TypedEventInstance<UpdateVoter> & {
|
20499
20459
|
data_decoded: UpdateVoter;
|
20500
20460
|
type_arguments: [];
|
20501
|
-
}
|
20461
|
+
};
|
20502
20462
|
|
20503
20463
|
export interface UpdateVoterEvent {
|
20504
20464
|
operator: MoveAddressType;
|
@@ -20519,11 +20479,11 @@ export namespace staking_contract {
|
|
20519
20479
|
}
|
20520
20480
|
}
|
20521
20481
|
|
20522
|
-
export
|
20523
|
-
|
20524
|
-
|
20525
|
-
|
20526
|
-
|
20482
|
+
export type UpdateVoterEventInstance =
|
20483
|
+
TypedEventInstance<UpdateVoterEvent> & {
|
20484
|
+
data_decoded: UpdateVoterEvent;
|
20485
|
+
type_arguments: [];
|
20486
|
+
};
|
20527
20487
|
|
20528
20488
|
export namespace entry {
|
20529
20489
|
export async function addStake(
|
@@ -21638,10 +21598,10 @@ export namespace object_code_deployment {
|
|
21638
21598
|
}
|
21639
21599
|
}
|
21640
21600
|
|
21641
|
-
export
|
21601
|
+
export type FreezeInstance = TypedEventInstance<Freeze> & {
|
21642
21602
|
data_decoded: Freeze;
|
21643
21603
|
type_arguments: [];
|
21644
|
-
}
|
21604
|
+
};
|
21645
21605
|
|
21646
21606
|
export interface ManagingRefs {
|
21647
21607
|
extend_ref: object$.ExtendRef;
|
@@ -21671,10 +21631,10 @@ export namespace object_code_deployment {
|
|
21671
21631
|
}
|
21672
21632
|
}
|
21673
21633
|
|
21674
|
-
export
|
21634
|
+
export type PublishInstance = TypedEventInstance<Publish> & {
|
21675
21635
|
data_decoded: Publish;
|
21676
21636
|
type_arguments: [];
|
21677
|
-
}
|
21637
|
+
};
|
21678
21638
|
|
21679
21639
|
export interface Upgrade {
|
21680
21640
|
object_address: MoveAddressType;
|
@@ -21690,10 +21650,10 @@ export namespace object_code_deployment {
|
|
21690
21650
|
}
|
21691
21651
|
}
|
21692
21652
|
|
21693
|
-
export
|
21653
|
+
export type UpgradeInstance = TypedEventInstance<Upgrade> & {
|
21694
21654
|
data_decoded: Upgrade;
|
21695
21655
|
type_arguments: [];
|
21696
|
-
}
|
21656
|
+
};
|
21697
21657
|
|
21698
21658
|
export namespace entry {
|
21699
21659
|
export async function freezeCodeObject(
|