@typemove/aptos 1.8.3 → 1.9.0
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/dist/cjs/builtin/0x1.d.ts +308 -308
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js +2 -2
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +102 -102
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- package/dist/cjs/builtin/0x3.js +2 -2
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/cjs/builtin/0x4.d.ts +22 -22
- package/dist/cjs/builtin/0x4.d.ts.map +1 -1
- package/dist/cjs/builtin/0x4.js +2 -2
- package/dist/cjs/builtin/0x4.js.map +1 -1
- package/dist/cjs/codegen/codegen.js +2 -2
- package/dist/cjs/codegen/codegen.js.map +1 -1
- package/dist/cjs/coder-helpers.js +1 -2
- package/dist/cjs/coder-helpers.js.map +1 -1
- package/dist/cjs/move-coder.d.ts.map +1 -1
- package/dist/cjs/move-coder.js +3 -2
- package/dist/cjs/move-coder.js.map +1 -1
- package/dist/cjs/to-internal.d.ts.map +1 -1
- package/dist/cjs/to-internal.js +6 -6
- package/dist/cjs/to-internal.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +308 -308
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +102 -102
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/dist/esm/builtin/0x4.d.ts +22 -22
- package/dist/esm/builtin/0x4.d.ts.map +1 -1
- package/dist/esm/builtin/0x4.js.map +1 -1
- package/dist/esm/move-coder.d.ts.map +1 -1
- package/dist/esm/move-coder.js +1 -0
- package/dist/esm/move-coder.js.map +1 -1
- package/dist/esm/to-internal.d.ts.map +1 -1
- package/dist/esm/to-internal.js +2 -1
- package/dist/esm/to-internal.js.map +1 -1
- package/package.json +2 -2
- package/src/builtin/0x1.ts +539 -579
- package/src/builtin/0x3.ts +177 -191
- package/src/builtin/0x4.ts +28 -31
- package/src/move-coder.ts +1 -0
- package/src/tests/types/0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af.ts +55 -55
- package/src/tests/types/0x6b3720cd988adeaf721ed9d4730da4324d52364871a68eac62b46d21e4d2fa99.ts +32 -36
- package/src/tests/types/0xbd35135844473187163ca197ca93b2ab014370587bb0ed3befff9e902d6bb541.ts +36 -42
- package/src/to-internal.ts +2 -1
package/src/builtin/0x1.ts
CHANGED
|
@@ -116,11 +116,10 @@ export namespace dkg {
|
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
118
|
|
|
119
|
-
export
|
|
120
|
-
extends TypedEventInstance<DKGStartEvent> {
|
|
119
|
+
export type DKGStartEventInstance = TypedEventInstance<DKGStartEvent> & {
|
|
121
120
|
data_decoded: DKGStartEvent;
|
|
122
121
|
type_arguments: [];
|
|
123
|
-
}
|
|
122
|
+
};
|
|
124
123
|
|
|
125
124
|
export interface DKGState {
|
|
126
125
|
last_completed: option.Option<dkg.DKGSessionState>;
|
|
@@ -248,11 +247,10 @@ export namespace code {
|
|
|
248
247
|
}
|
|
249
248
|
}
|
|
250
249
|
|
|
251
|
-
export
|
|
252
|
-
extends TypedEventInstance<PublishPackage> {
|
|
250
|
+
export type PublishPackageInstance = TypedEventInstance<PublishPackage> & {
|
|
253
251
|
data_decoded: PublishPackage;
|
|
254
252
|
type_arguments: [];
|
|
255
|
-
}
|
|
253
|
+
};
|
|
256
254
|
|
|
257
255
|
export interface UpgradePolicy {
|
|
258
256
|
policy: number;
|
|
@@ -329,11 +327,10 @@ export namespace coin {
|
|
|
329
327
|
}
|
|
330
328
|
}
|
|
331
329
|
|
|
332
|
-
export
|
|
333
|
-
extends TypedEventInstance<DepositEvent> {
|
|
330
|
+
export type DepositEventInstance = TypedEventInstance<DepositEvent> & {
|
|
334
331
|
data_decoded: DepositEvent;
|
|
335
332
|
type_arguments: [];
|
|
336
|
-
}
|
|
333
|
+
};
|
|
337
334
|
|
|
338
335
|
export interface Withdraw<T0> {
|
|
339
336
|
account: MoveAddressType;
|
|
@@ -366,11 +363,10 @@ export namespace coin {
|
|
|
366
363
|
}
|
|
367
364
|
}
|
|
368
365
|
|
|
369
|
-
export
|
|
370
|
-
extends TypedEventInstance<WithdrawEvent> {
|
|
366
|
+
export type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
|
|
371
367
|
data_decoded: WithdrawEvent;
|
|
372
368
|
type_arguments: [];
|
|
373
|
-
}
|
|
369
|
+
};
|
|
374
370
|
|
|
375
371
|
export interface AggregatableCoin<T0> {
|
|
376
372
|
value: aggregator.Aggregator;
|
|
@@ -473,10 +469,10 @@ export namespace coin {
|
|
|
473
469
|
}
|
|
474
470
|
}
|
|
475
471
|
|
|
476
|
-
export
|
|
472
|
+
export type CoinDepositInstance = TypedEventInstance<CoinDeposit> & {
|
|
477
473
|
data_decoded: CoinDeposit;
|
|
478
474
|
type_arguments: [];
|
|
479
|
-
}
|
|
475
|
+
};
|
|
480
476
|
|
|
481
477
|
export interface CoinEventHandleDeletion {
|
|
482
478
|
event_handle_creation_address: MoveAddressType;
|
|
@@ -496,11 +492,11 @@ export namespace coin {
|
|
|
496
492
|
}
|
|
497
493
|
}
|
|
498
494
|
|
|
499
|
-
export
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
495
|
+
export type CoinEventHandleDeletionInstance =
|
|
496
|
+
TypedEventInstance<CoinEventHandleDeletion> & {
|
|
497
|
+
data_decoded: CoinEventHandleDeletion;
|
|
498
|
+
type_arguments: [];
|
|
499
|
+
};
|
|
504
500
|
|
|
505
501
|
export interface CoinInfo<T0> {
|
|
506
502
|
name: string;
|
|
@@ -556,11 +552,10 @@ export namespace coin {
|
|
|
556
552
|
}
|
|
557
553
|
}
|
|
558
554
|
|
|
559
|
-
export
|
|
560
|
-
extends TypedEventInstance<CoinWithdraw> {
|
|
555
|
+
export type CoinWithdrawInstance = TypedEventInstance<CoinWithdraw> & {
|
|
561
556
|
data_decoded: CoinWithdraw;
|
|
562
557
|
type_arguments: [];
|
|
563
|
-
}
|
|
558
|
+
};
|
|
564
559
|
|
|
565
560
|
export interface FreezeCapability<T0> {
|
|
566
561
|
dummy_field: boolean;
|
|
@@ -641,11 +636,10 @@ export namespace coin {
|
|
|
641
636
|
}
|
|
642
637
|
}
|
|
643
638
|
|
|
644
|
-
export
|
|
645
|
-
extends TypedEventInstance<PairCreation> {
|
|
639
|
+
export type PairCreationInstance = TypedEventInstance<PairCreation> & {
|
|
646
640
|
data_decoded: PairCreation;
|
|
647
641
|
type_arguments: [];
|
|
648
|
-
}
|
|
642
|
+
};
|
|
649
643
|
|
|
650
644
|
export interface PairedCoinType {
|
|
651
645
|
type: type_info.TypeInfo;
|
|
@@ -1364,11 +1358,11 @@ export namespace jwks {
|
|
|
1364
1358
|
}
|
|
1365
1359
|
}
|
|
1366
1360
|
|
|
1367
|
-
export
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1361
|
+
export type ObservedJWKsUpdatedInstance =
|
|
1362
|
+
TypedEventInstance<ObservedJWKsUpdated> & {
|
|
1363
|
+
data_decoded: ObservedJWKsUpdated;
|
|
1364
|
+
type_arguments: [];
|
|
1365
|
+
};
|
|
1372
1366
|
|
|
1373
1367
|
export interface Patch {
|
|
1374
1368
|
variant: copyable_any.Any;
|
|
@@ -1626,10 +1620,10 @@ export namespace block {
|
|
|
1626
1620
|
}
|
|
1627
1621
|
}
|
|
1628
1622
|
|
|
1629
|
-
export
|
|
1623
|
+
export type NewBlockInstance = TypedEventInstance<NewBlock> & {
|
|
1630
1624
|
data_decoded: NewBlock;
|
|
1631
1625
|
type_arguments: [];
|
|
1632
|
-
}
|
|
1626
|
+
};
|
|
1633
1627
|
|
|
1634
1628
|
export interface NewBlockEvent {
|
|
1635
1629
|
hash: MoveAddressType;
|
|
@@ -1652,11 +1646,10 @@ export namespace block {
|
|
|
1652
1646
|
}
|
|
1653
1647
|
}
|
|
1654
1648
|
|
|
1655
|
-
export
|
|
1656
|
-
extends TypedEventInstance<NewBlockEvent> {
|
|
1649
|
+
export type NewBlockEventInstance = TypedEventInstance<NewBlockEvent> & {
|
|
1657
1650
|
data_decoded: NewBlockEvent;
|
|
1658
1651
|
type_arguments: [];
|
|
1659
|
-
}
|
|
1652
|
+
};
|
|
1660
1653
|
|
|
1661
1654
|
export interface UpdateEpochInterval {
|
|
1662
1655
|
old_epoch_interval: bigint;
|
|
@@ -1675,11 +1668,11 @@ export namespace block {
|
|
|
1675
1668
|
}
|
|
1676
1669
|
}
|
|
1677
1670
|
|
|
1678
|
-
export
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1671
|
+
export type UpdateEpochIntervalInstance =
|
|
1672
|
+
TypedEventInstance<UpdateEpochInterval> & {
|
|
1673
|
+
data_decoded: UpdateEpochInterval;
|
|
1674
|
+
type_arguments: [];
|
|
1675
|
+
};
|
|
1683
1676
|
|
|
1684
1677
|
export interface UpdateEpochIntervalEvent {
|
|
1685
1678
|
old_epoch_interval: bigint;
|
|
@@ -1698,11 +1691,11 @@ export namespace block {
|
|
|
1698
1691
|
}
|
|
1699
1692
|
}
|
|
1700
1693
|
|
|
1701
|
-
export
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1694
|
+
export type UpdateEpochIntervalEventInstance =
|
|
1695
|
+
TypedEventInstance<UpdateEpochIntervalEvent> & {
|
|
1696
|
+
data_decoded: UpdateEpochIntervalEvent;
|
|
1697
|
+
type_arguments: [];
|
|
1698
|
+
};
|
|
1706
1699
|
|
|
1707
1700
|
export namespace entry {}
|
|
1708
1701
|
export namespace view {
|
|
@@ -1797,10 +1790,10 @@ export namespace stake {
|
|
|
1797
1790
|
}
|
|
1798
1791
|
}
|
|
1799
1792
|
|
|
1800
|
-
export
|
|
1793
|
+
export type AddStakeInstance = TypedEventInstance<AddStake> & {
|
|
1801
1794
|
data_decoded: AddStake;
|
|
1802
1795
|
type_arguments: [];
|
|
1803
|
-
}
|
|
1796
|
+
};
|
|
1804
1797
|
|
|
1805
1798
|
export interface AddStakeEvent {
|
|
1806
1799
|
pool_address: MoveAddressType;
|
|
@@ -1817,11 +1810,10 @@ export namespace stake {
|
|
|
1817
1810
|
}
|
|
1818
1811
|
}
|
|
1819
1812
|
|
|
1820
|
-
export
|
|
1821
|
-
extends TypedEventInstance<AddStakeEvent> {
|
|
1813
|
+
export type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
|
|
1822
1814
|
data_decoded: AddStakeEvent;
|
|
1823
1815
|
type_arguments: [];
|
|
1824
|
-
}
|
|
1816
|
+
};
|
|
1825
1817
|
|
|
1826
1818
|
export interface AllowedValidators {
|
|
1827
1819
|
accounts: MoveAddressType[];
|
|
@@ -1872,11 +1864,11 @@ export namespace stake {
|
|
|
1872
1864
|
}
|
|
1873
1865
|
}
|
|
1874
1866
|
|
|
1875
|
-
export
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1867
|
+
export type DistributeRewardsInstance =
|
|
1868
|
+
TypedEventInstance<DistributeRewards> & {
|
|
1869
|
+
data_decoded: DistributeRewards;
|
|
1870
|
+
type_arguments: [];
|
|
1871
|
+
};
|
|
1880
1872
|
|
|
1881
1873
|
export interface DistributeRewardsEvent {
|
|
1882
1874
|
pool_address: MoveAddressType;
|
|
@@ -1895,11 +1887,11 @@ export namespace stake {
|
|
|
1895
1887
|
}
|
|
1896
1888
|
}
|
|
1897
1889
|
|
|
1898
|
-
export
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1890
|
+
export type DistributeRewardsEventInstance =
|
|
1891
|
+
TypedEventInstance<DistributeRewardsEvent> & {
|
|
1892
|
+
data_decoded: DistributeRewardsEvent;
|
|
1893
|
+
type_arguments: [];
|
|
1894
|
+
};
|
|
1903
1895
|
|
|
1904
1896
|
export interface IncreaseLockup {
|
|
1905
1897
|
pool_address: MoveAddressType;
|
|
@@ -1917,11 +1909,10 @@ export namespace stake {
|
|
|
1917
1909
|
}
|
|
1918
1910
|
}
|
|
1919
1911
|
|
|
1920
|
-
export
|
|
1921
|
-
extends TypedEventInstance<IncreaseLockup> {
|
|
1912
|
+
export type IncreaseLockupInstance = TypedEventInstance<IncreaseLockup> & {
|
|
1922
1913
|
data_decoded: IncreaseLockup;
|
|
1923
1914
|
type_arguments: [];
|
|
1924
|
-
}
|
|
1915
|
+
};
|
|
1925
1916
|
|
|
1926
1917
|
export interface IncreaseLockupEvent {
|
|
1927
1918
|
pool_address: MoveAddressType;
|
|
@@ -1941,11 +1932,11 @@ export namespace stake {
|
|
|
1941
1932
|
}
|
|
1942
1933
|
}
|
|
1943
1934
|
|
|
1944
|
-
export
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1935
|
+
export type IncreaseLockupEventInstance =
|
|
1936
|
+
TypedEventInstance<IncreaseLockupEvent> & {
|
|
1937
|
+
data_decoded: IncreaseLockupEvent;
|
|
1938
|
+
type_arguments: [];
|
|
1939
|
+
};
|
|
1949
1940
|
|
|
1950
1941
|
export interface IndividualValidatorPerformance {
|
|
1951
1942
|
successful_proposals: bigint;
|
|
@@ -1980,11 +1971,11 @@ export namespace stake {
|
|
|
1980
1971
|
}
|
|
1981
1972
|
}
|
|
1982
1973
|
|
|
1983
|
-
export
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1974
|
+
export type JoinValidatorSetInstance =
|
|
1975
|
+
TypedEventInstance<JoinValidatorSet> & {
|
|
1976
|
+
data_decoded: JoinValidatorSet;
|
|
1977
|
+
type_arguments: [];
|
|
1978
|
+
};
|
|
1988
1979
|
|
|
1989
1980
|
export interface JoinValidatorSetEvent {
|
|
1990
1981
|
pool_address: MoveAddressType;
|
|
@@ -2002,11 +1993,11 @@ export namespace stake {
|
|
|
2002
1993
|
}
|
|
2003
1994
|
}
|
|
2004
1995
|
|
|
2005
|
-
export
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
1996
|
+
export type JoinValidatorSetEventInstance =
|
|
1997
|
+
TypedEventInstance<JoinValidatorSetEvent> & {
|
|
1998
|
+
data_decoded: JoinValidatorSetEvent;
|
|
1999
|
+
type_arguments: [];
|
|
2000
|
+
};
|
|
2010
2001
|
|
|
2011
2002
|
export interface LeaveValidatorSet {
|
|
2012
2003
|
pool_address: MoveAddressType;
|
|
@@ -2024,11 +2015,11 @@ export namespace stake {
|
|
|
2024
2015
|
}
|
|
2025
2016
|
}
|
|
2026
2017
|
|
|
2027
|
-
export
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2018
|
+
export type LeaveValidatorSetInstance =
|
|
2019
|
+
TypedEventInstance<LeaveValidatorSet> & {
|
|
2020
|
+
data_decoded: LeaveValidatorSet;
|
|
2021
|
+
type_arguments: [];
|
|
2022
|
+
};
|
|
2032
2023
|
|
|
2033
2024
|
export interface LeaveValidatorSetEvent {
|
|
2034
2025
|
pool_address: MoveAddressType;
|
|
@@ -2046,11 +2037,11 @@ export namespace stake {
|
|
|
2046
2037
|
}
|
|
2047
2038
|
}
|
|
2048
2039
|
|
|
2049
|
-
export
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2040
|
+
export type LeaveValidatorSetEventInstance =
|
|
2041
|
+
TypedEventInstance<LeaveValidatorSetEvent> & {
|
|
2042
|
+
data_decoded: LeaveValidatorSetEvent;
|
|
2043
|
+
type_arguments: [];
|
|
2044
|
+
};
|
|
2054
2045
|
|
|
2055
2046
|
export interface OwnerCapability {
|
|
2056
2047
|
pool_address: MoveAddressType;
|
|
@@ -2085,11 +2076,10 @@ export namespace stake {
|
|
|
2085
2076
|
}
|
|
2086
2077
|
}
|
|
2087
2078
|
|
|
2088
|
-
export
|
|
2089
|
-
extends TypedEventInstance<ReactivateStake> {
|
|
2079
|
+
export type ReactivateStakeInstance = TypedEventInstance<ReactivateStake> & {
|
|
2090
2080
|
data_decoded: ReactivateStake;
|
|
2091
2081
|
type_arguments: [];
|
|
2092
|
-
}
|
|
2082
|
+
};
|
|
2093
2083
|
|
|
2094
2084
|
export interface ReactivateStakeEvent {
|
|
2095
2085
|
pool_address: MoveAddressType;
|
|
@@ -2108,11 +2098,11 @@ export namespace stake {
|
|
|
2108
2098
|
}
|
|
2109
2099
|
}
|
|
2110
2100
|
|
|
2111
|
-
export
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2101
|
+
export type ReactivateStakeEventInstance =
|
|
2102
|
+
TypedEventInstance<ReactivateStakeEvent> & {
|
|
2103
|
+
data_decoded: ReactivateStakeEvent;
|
|
2104
|
+
type_arguments: [];
|
|
2105
|
+
};
|
|
2116
2106
|
|
|
2117
2107
|
export interface RegisterValidatorCandidate {
|
|
2118
2108
|
pool_address: MoveAddressType;
|
|
@@ -2130,11 +2120,11 @@ export namespace stake {
|
|
|
2130
2120
|
}
|
|
2131
2121
|
}
|
|
2132
2122
|
|
|
2133
|
-
export
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2123
|
+
export type RegisterValidatorCandidateInstance =
|
|
2124
|
+
TypedEventInstance<RegisterValidatorCandidate> & {
|
|
2125
|
+
data_decoded: RegisterValidatorCandidate;
|
|
2126
|
+
type_arguments: [];
|
|
2127
|
+
};
|
|
2138
2128
|
|
|
2139
2129
|
export interface RegisterValidatorCandidateEvent {
|
|
2140
2130
|
pool_address: MoveAddressType;
|
|
@@ -2152,11 +2142,11 @@ export namespace stake {
|
|
|
2152
2142
|
}
|
|
2153
2143
|
}
|
|
2154
2144
|
|
|
2155
|
-
export
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2145
|
+
export type RegisterValidatorCandidateEventInstance =
|
|
2146
|
+
TypedEventInstance<RegisterValidatorCandidateEvent> & {
|
|
2147
|
+
data_decoded: RegisterValidatorCandidateEvent;
|
|
2148
|
+
type_arguments: [];
|
|
2149
|
+
};
|
|
2160
2150
|
|
|
2161
2151
|
export interface RotateConsensusKey {
|
|
2162
2152
|
pool_address: MoveAddressType;
|
|
@@ -2176,11 +2166,11 @@ export namespace stake {
|
|
|
2176
2166
|
}
|
|
2177
2167
|
}
|
|
2178
2168
|
|
|
2179
|
-
export
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2169
|
+
export type RotateConsensusKeyInstance =
|
|
2170
|
+
TypedEventInstance<RotateConsensusKey> & {
|
|
2171
|
+
data_decoded: RotateConsensusKey;
|
|
2172
|
+
type_arguments: [];
|
|
2173
|
+
};
|
|
2184
2174
|
|
|
2185
2175
|
export interface RotateConsensusKeyEvent {
|
|
2186
2176
|
pool_address: MoveAddressType;
|
|
@@ -2200,11 +2190,11 @@ export namespace stake {
|
|
|
2200
2190
|
}
|
|
2201
2191
|
}
|
|
2202
2192
|
|
|
2203
|
-
export
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2193
|
+
export type RotateConsensusKeyEventInstance =
|
|
2194
|
+
TypedEventInstance<RotateConsensusKeyEvent> & {
|
|
2195
|
+
data_decoded: RotateConsensusKeyEvent;
|
|
2196
|
+
type_arguments: [];
|
|
2197
|
+
};
|
|
2208
2198
|
|
|
2209
2199
|
export interface SetOperator {
|
|
2210
2200
|
pool_address: MoveAddressType;
|
|
@@ -2222,10 +2212,10 @@ export namespace stake {
|
|
|
2222
2212
|
}
|
|
2223
2213
|
}
|
|
2224
2214
|
|
|
2225
|
-
export
|
|
2215
|
+
export type SetOperatorInstance = TypedEventInstance<SetOperator> & {
|
|
2226
2216
|
data_decoded: SetOperator;
|
|
2227
2217
|
type_arguments: [];
|
|
2228
|
-
}
|
|
2218
|
+
};
|
|
2229
2219
|
|
|
2230
2220
|
export interface SetOperatorEvent {
|
|
2231
2221
|
pool_address: MoveAddressType;
|
|
@@ -2245,11 +2235,11 @@ export namespace stake {
|
|
|
2245
2235
|
}
|
|
2246
2236
|
}
|
|
2247
2237
|
|
|
2248
|
-
export
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2238
|
+
export type SetOperatorEventInstance =
|
|
2239
|
+
TypedEventInstance<SetOperatorEvent> & {
|
|
2240
|
+
data_decoded: SetOperatorEvent;
|
|
2241
|
+
type_arguments: [];
|
|
2242
|
+
};
|
|
2253
2243
|
|
|
2254
2244
|
export interface StakePool {
|
|
2255
2245
|
active: coin.Coin<aptos_coin.AptosCoin>;
|
|
@@ -2298,10 +2288,10 @@ export namespace stake {
|
|
|
2298
2288
|
}
|
|
2299
2289
|
}
|
|
2300
2290
|
|
|
2301
|
-
export
|
|
2291
|
+
export type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
|
|
2302
2292
|
data_decoded: UnlockStake;
|
|
2303
2293
|
type_arguments: [];
|
|
2304
|
-
}
|
|
2294
|
+
};
|
|
2305
2295
|
|
|
2306
2296
|
export interface UnlockStakeEvent {
|
|
2307
2297
|
pool_address: MoveAddressType;
|
|
@@ -2320,11 +2310,11 @@ export namespace stake {
|
|
|
2320
2310
|
}
|
|
2321
2311
|
}
|
|
2322
2312
|
|
|
2323
|
-
export
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2313
|
+
export type UnlockStakeEventInstance =
|
|
2314
|
+
TypedEventInstance<UnlockStakeEvent> & {
|
|
2315
|
+
data_decoded: UnlockStakeEvent;
|
|
2316
|
+
type_arguments: [];
|
|
2317
|
+
};
|
|
2328
2318
|
|
|
2329
2319
|
export interface UpdateNetworkAndFullnodeAddresses {
|
|
2330
2320
|
pool_address: MoveAddressType;
|
|
@@ -2346,11 +2336,11 @@ export namespace stake {
|
|
|
2346
2336
|
}
|
|
2347
2337
|
}
|
|
2348
2338
|
|
|
2349
|
-
export
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2339
|
+
export type UpdateNetworkAndFullnodeAddressesInstance =
|
|
2340
|
+
TypedEventInstance<UpdateNetworkAndFullnodeAddresses> & {
|
|
2341
|
+
data_decoded: UpdateNetworkAndFullnodeAddresses;
|
|
2342
|
+
type_arguments: [];
|
|
2343
|
+
};
|
|
2354
2344
|
|
|
2355
2345
|
export interface UpdateNetworkAndFullnodeAddressesEvent {
|
|
2356
2346
|
pool_address: MoveAddressType;
|
|
@@ -2373,11 +2363,11 @@ export namespace stake {
|
|
|
2373
2363
|
}
|
|
2374
2364
|
}
|
|
2375
2365
|
|
|
2376
|
-
export
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2366
|
+
export type UpdateNetworkAndFullnodeAddressesEventInstance =
|
|
2367
|
+
TypedEventInstance<UpdateNetworkAndFullnodeAddressesEvent> & {
|
|
2368
|
+
data_decoded: UpdateNetworkAndFullnodeAddressesEvent;
|
|
2369
|
+
type_arguments: [];
|
|
2370
|
+
};
|
|
2381
2371
|
|
|
2382
2372
|
export interface ValidatorConfig {
|
|
2383
2373
|
consensus_pubkey: string;
|
|
@@ -2478,11 +2468,10 @@ export namespace stake {
|
|
|
2478
2468
|
}
|
|
2479
2469
|
}
|
|
2480
2470
|
|
|
2481
|
-
export
|
|
2482
|
-
extends TypedEventInstance<WithdrawStake> {
|
|
2471
|
+
export type WithdrawStakeInstance = TypedEventInstance<WithdrawStake> & {
|
|
2483
2472
|
data_decoded: WithdrawStake;
|
|
2484
2473
|
type_arguments: [];
|
|
2485
|
-
}
|
|
2474
|
+
};
|
|
2486
2475
|
|
|
2487
2476
|
export interface WithdrawStakeEvent {
|
|
2488
2477
|
pool_address: MoveAddressType;
|
|
@@ -2501,11 +2490,11 @@ export namespace stake {
|
|
|
2501
2490
|
}
|
|
2502
2491
|
}
|
|
2503
2492
|
|
|
2504
|
-
export
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2493
|
+
export type WithdrawStakeEventInstance =
|
|
2494
|
+
TypedEventInstance<WithdrawStakeEvent> & {
|
|
2495
|
+
data_decoded: WithdrawStakeEvent;
|
|
2496
|
+
type_arguments: [];
|
|
2497
|
+
};
|
|
2509
2498
|
|
|
2510
2499
|
export namespace entry {
|
|
2511
2500
|
export async function withdraw(
|
|
@@ -3262,10 +3251,10 @@ export namespace object$ {
|
|
|
3262
3251
|
}
|
|
3263
3252
|
}
|
|
3264
3253
|
|
|
3265
|
-
export
|
|
3254
|
+
export type TransferInstance = TypedEventInstance<Transfer> & {
|
|
3266
3255
|
data_decoded: Transfer;
|
|
3267
3256
|
type_arguments: [];
|
|
3268
|
-
}
|
|
3257
|
+
};
|
|
3269
3258
|
|
|
3270
3259
|
export interface TransferEvent {
|
|
3271
3260
|
object: MoveAddressType;
|
|
@@ -3283,11 +3272,10 @@ export namespace object$ {
|
|
|
3283
3272
|
}
|
|
3284
3273
|
}
|
|
3285
3274
|
|
|
3286
|
-
export
|
|
3287
|
-
extends TypedEventInstance<TransferEvent> {
|
|
3275
|
+
export type TransferEventInstance = TypedEventInstance<TransferEvent> & {
|
|
3288
3276
|
data_decoded: TransferEvent;
|
|
3289
3277
|
type_arguments: [];
|
|
3290
|
-
}
|
|
3278
|
+
};
|
|
3291
3279
|
|
|
3292
3280
|
export interface TransferRef {
|
|
3293
3281
|
self: MoveAddressType;
|
|
@@ -3561,11 +3549,10 @@ export namespace voting {
|
|
|
3561
3549
|
}
|
|
3562
3550
|
}
|
|
3563
3551
|
|
|
3564
|
-
export
|
|
3565
|
-
extends TypedEventInstance<CreateProposal> {
|
|
3552
|
+
export type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
|
|
3566
3553
|
data_decoded: CreateProposal;
|
|
3567
3554
|
type_arguments: [];
|
|
3568
|
-
}
|
|
3555
|
+
};
|
|
3569
3556
|
|
|
3570
3557
|
export interface CreateProposalEvent {
|
|
3571
3558
|
proposal_id: bigint;
|
|
@@ -3588,11 +3575,11 @@ export namespace voting {
|
|
|
3588
3575
|
}
|
|
3589
3576
|
}
|
|
3590
3577
|
|
|
3591
|
-
export
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3578
|
+
export type CreateProposalEventInstance =
|
|
3579
|
+
TypedEventInstance<CreateProposalEvent> & {
|
|
3580
|
+
data_decoded: CreateProposalEvent;
|
|
3581
|
+
type_arguments: [];
|
|
3582
|
+
};
|
|
3596
3583
|
|
|
3597
3584
|
export interface Proposal<T0> {
|
|
3598
3585
|
proposer: MoveAddressType;
|
|
@@ -3636,11 +3623,10 @@ export namespace voting {
|
|
|
3636
3623
|
}
|
|
3637
3624
|
}
|
|
3638
3625
|
|
|
3639
|
-
export
|
|
3640
|
-
extends TypedEventInstance<RegisterForum> {
|
|
3626
|
+
export type RegisterForumInstance = TypedEventInstance<RegisterForum> & {
|
|
3641
3627
|
data_decoded: RegisterForum;
|
|
3642
3628
|
type_arguments: [];
|
|
3643
|
-
}
|
|
3629
|
+
};
|
|
3644
3630
|
|
|
3645
3631
|
export interface RegisterForumEvent {
|
|
3646
3632
|
hosting_account: MoveAddressType;
|
|
@@ -3659,11 +3645,11 @@ export namespace voting {
|
|
|
3659
3645
|
}
|
|
3660
3646
|
}
|
|
3661
3647
|
|
|
3662
|
-
export
|
|
3663
|
-
|
|
3664
|
-
|
|
3665
|
-
|
|
3666
|
-
|
|
3648
|
+
export type RegisterForumEventInstance =
|
|
3649
|
+
TypedEventInstance<RegisterForumEvent> & {
|
|
3650
|
+
data_decoded: RegisterForumEvent;
|
|
3651
|
+
type_arguments: [];
|
|
3652
|
+
};
|
|
3667
3653
|
|
|
3668
3654
|
export interface ResolveProposal {
|
|
3669
3655
|
proposal_id: bigint;
|
|
@@ -3684,11 +3670,10 @@ export namespace voting {
|
|
|
3684
3670
|
}
|
|
3685
3671
|
}
|
|
3686
3672
|
|
|
3687
|
-
export
|
|
3688
|
-
extends TypedEventInstance<ResolveProposal> {
|
|
3673
|
+
export type ResolveProposalInstance = TypedEventInstance<ResolveProposal> & {
|
|
3689
3674
|
data_decoded: ResolveProposal;
|
|
3690
3675
|
type_arguments: [];
|
|
3691
|
-
}
|
|
3676
|
+
};
|
|
3692
3677
|
|
|
3693
3678
|
export interface Vote {
|
|
3694
3679
|
proposal_id: bigint;
|
|
@@ -3705,10 +3690,10 @@ export namespace voting {
|
|
|
3705
3690
|
}
|
|
3706
3691
|
}
|
|
3707
3692
|
|
|
3708
|
-
export
|
|
3693
|
+
export type VoteInstance = TypedEventInstance<Vote> & {
|
|
3709
3694
|
data_decoded: Vote;
|
|
3710
3695
|
type_arguments: [];
|
|
3711
|
-
}
|
|
3696
|
+
};
|
|
3712
3697
|
|
|
3713
3698
|
export interface VoteEvent {
|
|
3714
3699
|
proposal_id: bigint;
|
|
@@ -3725,10 +3710,10 @@ export namespace voting {
|
|
|
3725
3710
|
}
|
|
3726
3711
|
}
|
|
3727
3712
|
|
|
3728
|
-
export
|
|
3713
|
+
export type VoteEventInstance = TypedEventInstance<VoteEvent> & {
|
|
3729
3714
|
data_decoded: VoteEvent;
|
|
3730
3715
|
type_arguments: [];
|
|
3731
|
-
}
|
|
3716
|
+
};
|
|
3732
3717
|
|
|
3733
3718
|
export interface VotingEvents {
|
|
3734
3719
|
create_proposal_events: event.EventHandle<voting.CreateProposalEvent>;
|
|
@@ -4159,11 +4144,10 @@ export namespace account {
|
|
|
4159
4144
|
}
|
|
4160
4145
|
}
|
|
4161
4146
|
|
|
4162
|
-
export
|
|
4163
|
-
extends TypedEventInstance<CoinRegister> {
|
|
4147
|
+
export type CoinRegisterInstance = TypedEventInstance<CoinRegister> & {
|
|
4164
4148
|
data_decoded: CoinRegister;
|
|
4165
4149
|
type_arguments: [];
|
|
4166
|
-
}
|
|
4150
|
+
};
|
|
4167
4151
|
|
|
4168
4152
|
export interface CoinRegisterEvent {
|
|
4169
4153
|
type_info: type_info.TypeInfo;
|
|
@@ -4181,11 +4165,11 @@ export namespace account {
|
|
|
4181
4165
|
}
|
|
4182
4166
|
}
|
|
4183
4167
|
|
|
4184
|
-
export
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
|
|
4188
|
-
|
|
4168
|
+
export type CoinRegisterEventInstance =
|
|
4169
|
+
TypedEventInstance<CoinRegisterEvent> & {
|
|
4170
|
+
data_decoded: CoinRegisterEvent;
|
|
4171
|
+
type_arguments: [];
|
|
4172
|
+
};
|
|
4189
4173
|
|
|
4190
4174
|
export interface KeyRotation {
|
|
4191
4175
|
account: MoveAddressType;
|
|
@@ -4203,10 +4187,10 @@ export namespace account {
|
|
|
4203
4187
|
}
|
|
4204
4188
|
}
|
|
4205
4189
|
|
|
4206
|
-
export
|
|
4190
|
+
export type KeyRotationInstance = TypedEventInstance<KeyRotation> & {
|
|
4207
4191
|
data_decoded: KeyRotation;
|
|
4208
4192
|
type_arguments: [];
|
|
4209
|
-
}
|
|
4193
|
+
};
|
|
4210
4194
|
|
|
4211
4195
|
export interface KeyRotationEvent {
|
|
4212
4196
|
old_authentication_key: string;
|
|
@@ -4225,11 +4209,11 @@ export namespace account {
|
|
|
4225
4209
|
}
|
|
4226
4210
|
}
|
|
4227
4211
|
|
|
4228
|
-
export
|
|
4229
|
-
|
|
4230
|
-
|
|
4231
|
-
|
|
4232
|
-
|
|
4212
|
+
export type KeyRotationEventInstance =
|
|
4213
|
+
TypedEventInstance<KeyRotationEvent> & {
|
|
4214
|
+
data_decoded: KeyRotationEvent;
|
|
4215
|
+
type_arguments: [];
|
|
4216
|
+
};
|
|
4233
4217
|
|
|
4234
4218
|
export interface OriginatingAddress {
|
|
4235
4219
|
address_map: table.Table<MoveAddressType, MoveAddressType>;
|
|
@@ -5079,10 +5063,10 @@ export namespace vesting {
|
|
|
5079
5063
|
}
|
|
5080
5064
|
}
|
|
5081
5065
|
|
|
5082
|
-
export
|
|
5066
|
+
export type DistributeInstance = TypedEventInstance<Distribute> & {
|
|
5083
5067
|
data_decoded: Distribute;
|
|
5084
5068
|
type_arguments: [];
|
|
5085
|
-
}
|
|
5069
|
+
};
|
|
5086
5070
|
|
|
5087
5071
|
export interface DistributeEvent {
|
|
5088
5072
|
admin: MoveAddressType;
|
|
@@ -5102,11 +5086,10 @@ export namespace vesting {
|
|
|
5102
5086
|
}
|
|
5103
5087
|
}
|
|
5104
5088
|
|
|
5105
|
-
export
|
|
5106
|
-
extends TypedEventInstance<DistributeEvent> {
|
|
5089
|
+
export type DistributeEventInstance = TypedEventInstance<DistributeEvent> & {
|
|
5107
5090
|
data_decoded: DistributeEvent;
|
|
5108
5091
|
type_arguments: [];
|
|
5109
|
-
}
|
|
5092
|
+
};
|
|
5110
5093
|
|
|
5111
5094
|
export interface ResetLockup {
|
|
5112
5095
|
admin: MoveAddressType;
|
|
@@ -5125,10 +5108,10 @@ export namespace vesting {
|
|
|
5125
5108
|
}
|
|
5126
5109
|
}
|
|
5127
5110
|
|
|
5128
|
-
export
|
|
5111
|
+
export type ResetLockupInstance = TypedEventInstance<ResetLockup> & {
|
|
5129
5112
|
data_decoded: ResetLockup;
|
|
5130
5113
|
type_arguments: [];
|
|
5131
|
-
}
|
|
5114
|
+
};
|
|
5132
5115
|
|
|
5133
5116
|
export interface ResetLockupEvent {
|
|
5134
5117
|
admin: MoveAddressType;
|
|
@@ -5149,11 +5132,11 @@ export namespace vesting {
|
|
|
5149
5132
|
}
|
|
5150
5133
|
}
|
|
5151
5134
|
|
|
5152
|
-
export
|
|
5153
|
-
|
|
5154
|
-
|
|
5155
|
-
|
|
5156
|
-
|
|
5135
|
+
export type ResetLockupEventInstance =
|
|
5136
|
+
TypedEventInstance<ResetLockupEvent> & {
|
|
5137
|
+
data_decoded: ResetLockupEvent;
|
|
5138
|
+
type_arguments: [];
|
|
5139
|
+
};
|
|
5157
5140
|
|
|
5158
5141
|
export interface UpdateVoter {
|
|
5159
5142
|
admin: MoveAddressType;
|
|
@@ -5173,10 +5156,10 @@ export namespace vesting {
|
|
|
5173
5156
|
}
|
|
5174
5157
|
}
|
|
5175
5158
|
|
|
5176
|
-
export
|
|
5159
|
+
export type UpdateVoterInstance = TypedEventInstance<UpdateVoter> & {
|
|
5177
5160
|
data_decoded: UpdateVoter;
|
|
5178
5161
|
type_arguments: [];
|
|
5179
|
-
}
|
|
5162
|
+
};
|
|
5180
5163
|
|
|
5181
5164
|
export interface UpdateVoterEvent {
|
|
5182
5165
|
admin: MoveAddressType;
|
|
@@ -5198,11 +5181,11 @@ export namespace vesting {
|
|
|
5198
5181
|
}
|
|
5199
5182
|
}
|
|
5200
5183
|
|
|
5201
|
-
export
|
|
5202
|
-
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5184
|
+
export type UpdateVoterEventInstance =
|
|
5185
|
+
TypedEventInstance<UpdateVoterEvent> & {
|
|
5186
|
+
data_decoded: UpdateVoterEvent;
|
|
5187
|
+
type_arguments: [];
|
|
5188
|
+
};
|
|
5206
5189
|
|
|
5207
5190
|
export interface AdminStore {
|
|
5208
5191
|
vesting_contracts: MoveAddressType[];
|
|
@@ -5236,11 +5219,10 @@ export namespace vesting {
|
|
|
5236
5219
|
}
|
|
5237
5220
|
}
|
|
5238
5221
|
|
|
5239
|
-
export
|
|
5240
|
-
extends TypedEventInstance<AdminWithdraw> {
|
|
5222
|
+
export type AdminWithdrawInstance = TypedEventInstance<AdminWithdraw> & {
|
|
5241
5223
|
data_decoded: AdminWithdraw;
|
|
5242
5224
|
type_arguments: [];
|
|
5243
|
-
}
|
|
5225
|
+
};
|
|
5244
5226
|
|
|
5245
5227
|
export interface AdminWithdrawEvent {
|
|
5246
5228
|
admin: MoveAddressType;
|
|
@@ -5260,11 +5242,11 @@ export namespace vesting {
|
|
|
5260
5242
|
}
|
|
5261
5243
|
}
|
|
5262
5244
|
|
|
5263
|
-
export
|
|
5264
|
-
|
|
5265
|
-
|
|
5266
|
-
|
|
5267
|
-
|
|
5245
|
+
export type AdminWithdrawEventInstance =
|
|
5246
|
+
TypedEventInstance<AdminWithdrawEvent> & {
|
|
5247
|
+
data_decoded: AdminWithdrawEvent;
|
|
5248
|
+
type_arguments: [];
|
|
5249
|
+
};
|
|
5268
5250
|
|
|
5269
5251
|
export interface CreateVestingContract {
|
|
5270
5252
|
operator: MoveAddressType;
|
|
@@ -5288,11 +5270,11 @@ export namespace vesting {
|
|
|
5288
5270
|
}
|
|
5289
5271
|
}
|
|
5290
5272
|
|
|
5291
|
-
export
|
|
5292
|
-
|
|
5293
|
-
|
|
5294
|
-
|
|
5295
|
-
|
|
5273
|
+
export type CreateVestingContractInstance =
|
|
5274
|
+
TypedEventInstance<CreateVestingContract> & {
|
|
5275
|
+
data_decoded: CreateVestingContract;
|
|
5276
|
+
type_arguments: [];
|
|
5277
|
+
};
|
|
5296
5278
|
|
|
5297
5279
|
export interface CreateVestingContractEvent {
|
|
5298
5280
|
operator: MoveAddressType;
|
|
@@ -5316,11 +5298,11 @@ export namespace vesting {
|
|
|
5316
5298
|
}
|
|
5317
5299
|
}
|
|
5318
5300
|
|
|
5319
|
-
export
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5301
|
+
export type CreateVestingContractEventInstance =
|
|
5302
|
+
TypedEventInstance<CreateVestingContractEvent> & {
|
|
5303
|
+
data_decoded: CreateVestingContractEvent;
|
|
5304
|
+
type_arguments: [];
|
|
5305
|
+
};
|
|
5324
5306
|
|
|
5325
5307
|
export interface SetBeneficiary {
|
|
5326
5308
|
admin: MoveAddressType;
|
|
@@ -5340,11 +5322,10 @@ export namespace vesting {
|
|
|
5340
5322
|
}
|
|
5341
5323
|
}
|
|
5342
5324
|
|
|
5343
|
-
export
|
|
5344
|
-
extends TypedEventInstance<SetBeneficiary> {
|
|
5325
|
+
export type SetBeneficiaryInstance = TypedEventInstance<SetBeneficiary> & {
|
|
5345
5326
|
data_decoded: SetBeneficiary;
|
|
5346
5327
|
type_arguments: [];
|
|
5347
|
-
}
|
|
5328
|
+
};
|
|
5348
5329
|
|
|
5349
5330
|
export interface SetBeneficiaryEvent {
|
|
5350
5331
|
admin: MoveAddressType;
|
|
@@ -5366,11 +5347,11 @@ export namespace vesting {
|
|
|
5366
5347
|
}
|
|
5367
5348
|
}
|
|
5368
5349
|
|
|
5369
|
-
export
|
|
5370
|
-
|
|
5371
|
-
|
|
5372
|
-
|
|
5373
|
-
|
|
5350
|
+
export type SetBeneficiaryEventInstance =
|
|
5351
|
+
TypedEventInstance<SetBeneficiaryEvent> & {
|
|
5352
|
+
data_decoded: SetBeneficiaryEvent;
|
|
5353
|
+
type_arguments: [];
|
|
5354
|
+
};
|
|
5374
5355
|
|
|
5375
5356
|
export interface StakingInfo {
|
|
5376
5357
|
pool_address: MoveAddressType;
|
|
@@ -5404,10 +5385,10 @@ export namespace vesting {
|
|
|
5404
5385
|
}
|
|
5405
5386
|
}
|
|
5406
5387
|
|
|
5407
|
-
export
|
|
5388
|
+
export type TerminateInstance = TypedEventInstance<Terminate> & {
|
|
5408
5389
|
data_decoded: Terminate;
|
|
5409
5390
|
type_arguments: [];
|
|
5410
|
-
}
|
|
5391
|
+
};
|
|
5411
5392
|
|
|
5412
5393
|
export interface TerminateEvent {
|
|
5413
5394
|
admin: MoveAddressType;
|
|
@@ -5424,11 +5405,10 @@ export namespace vesting {
|
|
|
5424
5405
|
}
|
|
5425
5406
|
}
|
|
5426
5407
|
|
|
5427
|
-
export
|
|
5428
|
-
extends TypedEventInstance<TerminateEvent> {
|
|
5408
|
+
export type TerminateEventInstance = TypedEventInstance<TerminateEvent> & {
|
|
5429
5409
|
data_decoded: TerminateEvent;
|
|
5430
5410
|
type_arguments: [];
|
|
5431
|
-
}
|
|
5411
|
+
};
|
|
5432
5412
|
|
|
5433
5413
|
export interface UnlockRewards {
|
|
5434
5414
|
admin: MoveAddressType;
|
|
@@ -5447,11 +5427,10 @@ export namespace vesting {
|
|
|
5447
5427
|
}
|
|
5448
5428
|
}
|
|
5449
5429
|
|
|
5450
|
-
export
|
|
5451
|
-
extends TypedEventInstance<UnlockRewards> {
|
|
5430
|
+
export type UnlockRewardsInstance = TypedEventInstance<UnlockRewards> & {
|
|
5452
5431
|
data_decoded: UnlockRewards;
|
|
5453
5432
|
type_arguments: [];
|
|
5454
|
-
}
|
|
5433
|
+
};
|
|
5455
5434
|
|
|
5456
5435
|
export interface UnlockRewardsEvent {
|
|
5457
5436
|
admin: MoveAddressType;
|
|
@@ -5472,11 +5451,11 @@ export namespace vesting {
|
|
|
5472
5451
|
}
|
|
5473
5452
|
}
|
|
5474
5453
|
|
|
5475
|
-
export
|
|
5476
|
-
|
|
5477
|
-
|
|
5478
|
-
|
|
5479
|
-
|
|
5454
|
+
export type UnlockRewardsEventInstance =
|
|
5455
|
+
TypedEventInstance<UnlockRewardsEvent> & {
|
|
5456
|
+
data_decoded: UnlockRewardsEvent;
|
|
5457
|
+
type_arguments: [];
|
|
5458
|
+
};
|
|
5480
5459
|
|
|
5481
5460
|
export interface UpdateOperator {
|
|
5482
5461
|
admin: MoveAddressType;
|
|
@@ -5497,11 +5476,10 @@ export namespace vesting {
|
|
|
5497
5476
|
}
|
|
5498
5477
|
}
|
|
5499
5478
|
|
|
5500
|
-
export
|
|
5501
|
-
extends TypedEventInstance<UpdateOperator> {
|
|
5479
|
+
export type UpdateOperatorInstance = TypedEventInstance<UpdateOperator> & {
|
|
5502
5480
|
data_decoded: UpdateOperator;
|
|
5503
5481
|
type_arguments: [];
|
|
5504
|
-
}
|
|
5482
|
+
};
|
|
5505
5483
|
|
|
5506
5484
|
export interface UpdateOperatorEvent {
|
|
5507
5485
|
admin: MoveAddressType;
|
|
@@ -5524,11 +5502,11 @@ export namespace vesting {
|
|
|
5524
5502
|
}
|
|
5525
5503
|
}
|
|
5526
5504
|
|
|
5527
|
-
export
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
|
|
5531
|
-
|
|
5505
|
+
export type UpdateOperatorEventInstance =
|
|
5506
|
+
TypedEventInstance<UpdateOperatorEvent> & {
|
|
5507
|
+
data_decoded: UpdateOperatorEvent;
|
|
5508
|
+
type_arguments: [];
|
|
5509
|
+
};
|
|
5532
5510
|
|
|
5533
5511
|
export interface Vest {
|
|
5534
5512
|
admin: MoveAddressType;
|
|
@@ -5548,10 +5526,10 @@ export namespace vesting {
|
|
|
5548
5526
|
}
|
|
5549
5527
|
}
|
|
5550
5528
|
|
|
5551
|
-
export
|
|
5529
|
+
export type VestInstance = TypedEventInstance<Vest> & {
|
|
5552
5530
|
data_decoded: Vest;
|
|
5553
5531
|
type_arguments: [];
|
|
5554
|
-
}
|
|
5532
|
+
};
|
|
5555
5533
|
|
|
5556
5534
|
export interface VestEvent {
|
|
5557
5535
|
admin: MoveAddressType;
|
|
@@ -5571,10 +5549,10 @@ export namespace vesting {
|
|
|
5571
5549
|
}
|
|
5572
5550
|
}
|
|
5573
5551
|
|
|
5574
|
-
export
|
|
5552
|
+
export type VestEventInstance = TypedEventInstance<VestEvent> & {
|
|
5575
5553
|
data_decoded: VestEvent;
|
|
5576
5554
|
type_arguments: [];
|
|
5577
|
-
}
|
|
5555
|
+
};
|
|
5578
5556
|
|
|
5579
5557
|
export interface VestingAccountManagement {
|
|
5580
5558
|
roles: simple_map.SimpleMap<string, MoveAddressType>;
|
|
@@ -7064,11 +7042,11 @@ export namespace randomness {
|
|
|
7064
7042
|
}
|
|
7065
7043
|
}
|
|
7066
7044
|
|
|
7067
|
-
export
|
|
7068
|
-
|
|
7069
|
-
|
|
7070
|
-
|
|
7071
|
-
|
|
7045
|
+
export type RandomnessGeneratedEventInstance =
|
|
7046
|
+
TypedEventInstance<RandomnessGeneratedEvent> & {
|
|
7047
|
+
data_decoded: RandomnessGeneratedEvent;
|
|
7048
|
+
type_arguments: [];
|
|
7049
|
+
};
|
|
7072
7050
|
|
|
7073
7051
|
export namespace entry {}
|
|
7074
7052
|
export namespace view {}
|
|
@@ -7736,11 +7714,11 @@ export namespace aptos_account {
|
|
|
7736
7714
|
}
|
|
7737
7715
|
}
|
|
7738
7716
|
|
|
7739
|
-
export
|
|
7740
|
-
|
|
7741
|
-
|
|
7742
|
-
|
|
7743
|
-
|
|
7717
|
+
export type DirectCoinTransferConfigUpdatedInstance =
|
|
7718
|
+
TypedEventInstance<DirectCoinTransferConfigUpdated> & {
|
|
7719
|
+
data_decoded: DirectCoinTransferConfigUpdated;
|
|
7720
|
+
type_arguments: [];
|
|
7721
|
+
};
|
|
7744
7722
|
|
|
7745
7723
|
export interface DirectCoinTransferConfigUpdatedEvent {
|
|
7746
7724
|
new_allow_direct_transfers: boolean;
|
|
@@ -7759,11 +7737,11 @@ export namespace aptos_account {
|
|
|
7759
7737
|
}
|
|
7760
7738
|
}
|
|
7761
7739
|
|
|
7762
|
-
export
|
|
7763
|
-
|
|
7764
|
-
|
|
7765
|
-
|
|
7766
|
-
|
|
7740
|
+
export type DirectCoinTransferConfigUpdatedEventInstance =
|
|
7741
|
+
TypedEventInstance<DirectCoinTransferConfigUpdatedEvent> & {
|
|
7742
|
+
data_decoded: DirectCoinTransferConfigUpdatedEvent;
|
|
7743
|
+
type_arguments: [];
|
|
7744
|
+
};
|
|
7767
7745
|
|
|
7768
7746
|
export interface DirectTransferConfig {
|
|
7769
7747
|
allow_arbitrary_coin_transfers: boolean;
|
|
@@ -8766,10 +8744,10 @@ export namespace fungible_asset {
|
|
|
8766
8744
|
}
|
|
8767
8745
|
}
|
|
8768
8746
|
|
|
8769
|
-
export
|
|
8747
|
+
export type DepositInstance = TypedEventInstance<Deposit> & {
|
|
8770
8748
|
data_decoded: Deposit;
|
|
8771
8749
|
type_arguments: [];
|
|
8772
|
-
}
|
|
8750
|
+
};
|
|
8773
8751
|
|
|
8774
8752
|
export interface DepositEvent {
|
|
8775
8753
|
amount: bigint;
|
|
@@ -8785,11 +8763,10 @@ export namespace fungible_asset {
|
|
|
8785
8763
|
}
|
|
8786
8764
|
}
|
|
8787
8765
|
|
|
8788
|
-
export
|
|
8789
|
-
extends TypedEventInstance<DepositEvent> {
|
|
8766
|
+
export type DepositEventInstance = TypedEventInstance<DepositEvent> & {
|
|
8790
8767
|
data_decoded: DepositEvent;
|
|
8791
8768
|
type_arguments: [];
|
|
8792
|
-
}
|
|
8769
|
+
};
|
|
8793
8770
|
|
|
8794
8771
|
export interface DeriveSupply {
|
|
8795
8772
|
dispatch_function: option.Option<function_info.FunctionInfo>;
|
|
@@ -8838,10 +8815,10 @@ export namespace fungible_asset {
|
|
|
8838
8815
|
}
|
|
8839
8816
|
}
|
|
8840
8817
|
|
|
8841
|
-
export
|
|
8818
|
+
export type FrozenInstance = TypedEventInstance<Frozen> & {
|
|
8842
8819
|
data_decoded: Frozen;
|
|
8843
8820
|
type_arguments: [];
|
|
8844
|
-
}
|
|
8821
|
+
};
|
|
8845
8822
|
|
|
8846
8823
|
export interface FrozenEvent {
|
|
8847
8824
|
frozen: boolean;
|
|
@@ -8857,10 +8834,10 @@ export namespace fungible_asset {
|
|
|
8857
8834
|
}
|
|
8858
8835
|
}
|
|
8859
8836
|
|
|
8860
|
-
export
|
|
8837
|
+
export type FrozenEventInstance = TypedEventInstance<FrozenEvent> & {
|
|
8861
8838
|
data_decoded: FrozenEvent;
|
|
8862
8839
|
type_arguments: [];
|
|
8863
|
-
}
|
|
8840
|
+
};
|
|
8864
8841
|
|
|
8865
8842
|
export interface FungibleAsset {
|
|
8866
8843
|
metadata: object$.Object<fungible_asset.Metadata>;
|
|
@@ -8989,10 +8966,10 @@ export namespace fungible_asset {
|
|
|
8989
8966
|
}
|
|
8990
8967
|
}
|
|
8991
8968
|
|
|
8992
|
-
export
|
|
8969
|
+
export type WithdrawInstance = TypedEventInstance<Withdraw> & {
|
|
8993
8970
|
data_decoded: Withdraw;
|
|
8994
8971
|
type_arguments: [];
|
|
8995
|
-
}
|
|
8972
|
+
};
|
|
8996
8973
|
|
|
8997
8974
|
export interface WithdrawEvent {
|
|
8998
8975
|
amount: bigint;
|
|
@@ -9008,11 +8985,10 @@ export namespace fungible_asset {
|
|
|
9008
8985
|
}
|
|
9009
8986
|
}
|
|
9010
8987
|
|
|
9011
|
-
export
|
|
9012
|
-
extends TypedEventInstance<WithdrawEvent> {
|
|
8988
|
+
export type WithdrawEventInstance = TypedEventInstance<WithdrawEvent> & {
|
|
9013
8989
|
data_decoded: WithdrawEvent;
|
|
9014
8990
|
type_arguments: [];
|
|
9015
|
-
}
|
|
8991
|
+
};
|
|
9016
8992
|
|
|
9017
8993
|
export namespace entry {
|
|
9018
8994
|
export async function transfer<T0 = any>(
|
|
@@ -9484,11 +9460,10 @@ export namespace delegation_pool {
|
|
|
9484
9460
|
}
|
|
9485
9461
|
}
|
|
9486
9462
|
|
|
9487
|
-
export
|
|
9488
|
-
extends TypedEventInstance<CreateProposal> {
|
|
9463
|
+
export type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
|
|
9489
9464
|
data_decoded: CreateProposal;
|
|
9490
9465
|
type_arguments: [];
|
|
9491
|
-
}
|
|
9466
|
+
};
|
|
9492
9467
|
|
|
9493
9468
|
export interface CreateProposalEvent {
|
|
9494
9469
|
proposal_id: bigint;
|
|
@@ -9508,11 +9483,11 @@ export namespace delegation_pool {
|
|
|
9508
9483
|
}
|
|
9509
9484
|
}
|
|
9510
9485
|
|
|
9511
|
-
export
|
|
9512
|
-
|
|
9513
|
-
|
|
9514
|
-
|
|
9515
|
-
|
|
9486
|
+
export type CreateProposalEventInstance =
|
|
9487
|
+
TypedEventInstance<CreateProposalEvent> & {
|
|
9488
|
+
data_decoded: CreateProposalEvent;
|
|
9489
|
+
type_arguments: [];
|
|
9490
|
+
};
|
|
9516
9491
|
|
|
9517
9492
|
export interface Vote {
|
|
9518
9493
|
voter: MoveAddressType;
|
|
@@ -9532,10 +9507,10 @@ export namespace delegation_pool {
|
|
|
9532
9507
|
}
|
|
9533
9508
|
}
|
|
9534
9509
|
|
|
9535
|
-
export
|
|
9510
|
+
export type VoteInstance = TypedEventInstance<Vote> & {
|
|
9536
9511
|
data_decoded: Vote;
|
|
9537
9512
|
type_arguments: [];
|
|
9538
|
-
}
|
|
9513
|
+
};
|
|
9539
9514
|
|
|
9540
9515
|
export interface VoteEvent {
|
|
9541
9516
|
voter: MoveAddressType;
|
|
@@ -9555,10 +9530,10 @@ export namespace delegation_pool {
|
|
|
9555
9530
|
}
|
|
9556
9531
|
}
|
|
9557
9532
|
|
|
9558
|
-
export
|
|
9533
|
+
export type VoteEventInstance = TypedEventInstance<VoteEvent> & {
|
|
9559
9534
|
data_decoded: VoteEvent;
|
|
9560
9535
|
type_arguments: [];
|
|
9561
|
-
}
|
|
9536
|
+
};
|
|
9562
9537
|
|
|
9563
9538
|
export interface AddStake {
|
|
9564
9539
|
pool_address: MoveAddressType;
|
|
@@ -9577,10 +9552,10 @@ export namespace delegation_pool {
|
|
|
9577
9552
|
}
|
|
9578
9553
|
}
|
|
9579
9554
|
|
|
9580
|
-
export
|
|
9555
|
+
export type AddStakeInstance = TypedEventInstance<AddStake> & {
|
|
9581
9556
|
data_decoded: AddStake;
|
|
9582
9557
|
type_arguments: [];
|
|
9583
|
-
}
|
|
9558
|
+
};
|
|
9584
9559
|
|
|
9585
9560
|
export interface AddStakeEvent {
|
|
9586
9561
|
pool_address: MoveAddressType;
|
|
@@ -9599,11 +9574,10 @@ export namespace delegation_pool {
|
|
|
9599
9574
|
}
|
|
9600
9575
|
}
|
|
9601
9576
|
|
|
9602
|
-
export
|
|
9603
|
-
extends TypedEventInstance<AddStakeEvent> {
|
|
9577
|
+
export type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
|
|
9604
9578
|
data_decoded: AddStakeEvent;
|
|
9605
9579
|
type_arguments: [];
|
|
9606
|
-
}
|
|
9580
|
+
};
|
|
9607
9581
|
|
|
9608
9582
|
export interface ReactivateStake {
|
|
9609
9583
|
pool_address: MoveAddressType;
|
|
@@ -9623,11 +9597,10 @@ export namespace delegation_pool {
|
|
|
9623
9597
|
}
|
|
9624
9598
|
}
|
|
9625
9599
|
|
|
9626
|
-
export
|
|
9627
|
-
extends TypedEventInstance<ReactivateStake> {
|
|
9600
|
+
export type ReactivateStakeInstance = TypedEventInstance<ReactivateStake> & {
|
|
9628
9601
|
data_decoded: ReactivateStake;
|
|
9629
9602
|
type_arguments: [];
|
|
9630
|
-
}
|
|
9603
|
+
};
|
|
9631
9604
|
|
|
9632
9605
|
export interface ReactivateStakeEvent {
|
|
9633
9606
|
pool_address: MoveAddressType;
|
|
@@ -9647,11 +9620,11 @@ export namespace delegation_pool {
|
|
|
9647
9620
|
}
|
|
9648
9621
|
}
|
|
9649
9622
|
|
|
9650
|
-
export
|
|
9651
|
-
|
|
9652
|
-
|
|
9653
|
-
|
|
9654
|
-
|
|
9623
|
+
export type ReactivateStakeEventInstance =
|
|
9624
|
+
TypedEventInstance<ReactivateStakeEvent> & {
|
|
9625
|
+
data_decoded: ReactivateStakeEvent;
|
|
9626
|
+
type_arguments: [];
|
|
9627
|
+
};
|
|
9655
9628
|
|
|
9656
9629
|
export interface UnlockStake {
|
|
9657
9630
|
pool_address: MoveAddressType;
|
|
@@ -9669,10 +9642,10 @@ export namespace delegation_pool {
|
|
|
9669
9642
|
}
|
|
9670
9643
|
}
|
|
9671
9644
|
|
|
9672
|
-
export
|
|
9645
|
+
export type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
|
|
9673
9646
|
data_decoded: UnlockStake;
|
|
9674
9647
|
type_arguments: [];
|
|
9675
|
-
}
|
|
9648
|
+
};
|
|
9676
9649
|
|
|
9677
9650
|
export interface UnlockStakeEvent {
|
|
9678
9651
|
pool_address: MoveAddressType;
|
|
@@ -9692,11 +9665,11 @@ export namespace delegation_pool {
|
|
|
9692
9665
|
}
|
|
9693
9666
|
}
|
|
9694
9667
|
|
|
9695
|
-
export
|
|
9696
|
-
|
|
9697
|
-
|
|
9698
|
-
|
|
9699
|
-
|
|
9668
|
+
export type UnlockStakeEventInstance =
|
|
9669
|
+
TypedEventInstance<UnlockStakeEvent> & {
|
|
9670
|
+
data_decoded: UnlockStakeEvent;
|
|
9671
|
+
type_arguments: [];
|
|
9672
|
+
};
|
|
9700
9673
|
|
|
9701
9674
|
export interface WithdrawStake {
|
|
9702
9675
|
pool_address: MoveAddressType;
|
|
@@ -9714,11 +9687,10 @@ export namespace delegation_pool {
|
|
|
9714
9687
|
}
|
|
9715
9688
|
}
|
|
9716
9689
|
|
|
9717
|
-
export
|
|
9718
|
-
extends TypedEventInstance<WithdrawStake> {
|
|
9690
|
+
export type WithdrawStakeInstance = TypedEventInstance<WithdrawStake> & {
|
|
9719
9691
|
data_decoded: WithdrawStake;
|
|
9720
9692
|
type_arguments: [];
|
|
9721
|
-
}
|
|
9693
|
+
};
|
|
9722
9694
|
|
|
9723
9695
|
export interface WithdrawStakeEvent {
|
|
9724
9696
|
pool_address: MoveAddressType;
|
|
@@ -9738,11 +9710,11 @@ export namespace delegation_pool {
|
|
|
9738
9710
|
}
|
|
9739
9711
|
}
|
|
9740
9712
|
|
|
9741
|
-
export
|
|
9742
|
-
|
|
9743
|
-
|
|
9744
|
-
|
|
9745
|
-
|
|
9713
|
+
export type WithdrawStakeEventInstance =
|
|
9714
|
+
TypedEventInstance<WithdrawStakeEvent> & {
|
|
9715
|
+
data_decoded: WithdrawStakeEvent;
|
|
9716
|
+
type_arguments: [];
|
|
9717
|
+
};
|
|
9746
9718
|
|
|
9747
9719
|
export interface AllowlistDelegator {
|
|
9748
9720
|
pool_address: MoveAddressType;
|
|
@@ -9761,11 +9733,11 @@ export namespace delegation_pool {
|
|
|
9761
9733
|
}
|
|
9762
9734
|
}
|
|
9763
9735
|
|
|
9764
|
-
export
|
|
9765
|
-
|
|
9766
|
-
|
|
9767
|
-
|
|
9768
|
-
|
|
9736
|
+
export type AllowlistDelegatorInstance =
|
|
9737
|
+
TypedEventInstance<AllowlistDelegator> & {
|
|
9738
|
+
data_decoded: AllowlistDelegator;
|
|
9739
|
+
type_arguments: [];
|
|
9740
|
+
};
|
|
9769
9741
|
|
|
9770
9742
|
export interface BeneficiaryForOperator {
|
|
9771
9743
|
beneficiary_for_operator: MoveAddressType;
|
|
@@ -9802,11 +9774,11 @@ export namespace delegation_pool {
|
|
|
9802
9774
|
}
|
|
9803
9775
|
}
|
|
9804
9776
|
|
|
9805
|
-
export
|
|
9806
|
-
|
|
9807
|
-
|
|
9808
|
-
|
|
9809
|
-
|
|
9777
|
+
export type CommissionPercentageChangeInstance =
|
|
9778
|
+
TypedEventInstance<CommissionPercentageChange> & {
|
|
9779
|
+
data_decoded: CommissionPercentageChange;
|
|
9780
|
+
type_arguments: [];
|
|
9781
|
+
};
|
|
9810
9782
|
|
|
9811
9783
|
export interface DelegateVotingPower {
|
|
9812
9784
|
pool_address: MoveAddressType;
|
|
@@ -9826,11 +9798,11 @@ export namespace delegation_pool {
|
|
|
9826
9798
|
}
|
|
9827
9799
|
}
|
|
9828
9800
|
|
|
9829
|
-
export
|
|
9830
|
-
|
|
9831
|
-
|
|
9832
|
-
|
|
9833
|
-
|
|
9801
|
+
export type DelegateVotingPowerInstance =
|
|
9802
|
+
TypedEventInstance<DelegateVotingPower> & {
|
|
9803
|
+
data_decoded: DelegateVotingPower;
|
|
9804
|
+
type_arguments: [];
|
|
9805
|
+
};
|
|
9834
9806
|
|
|
9835
9807
|
export interface DelegateVotingPowerEvent {
|
|
9836
9808
|
pool_address: MoveAddressType;
|
|
@@ -9850,11 +9822,11 @@ export namespace delegation_pool {
|
|
|
9850
9822
|
}
|
|
9851
9823
|
}
|
|
9852
9824
|
|
|
9853
|
-
export
|
|
9854
|
-
|
|
9855
|
-
|
|
9856
|
-
|
|
9857
|
-
|
|
9825
|
+
export type DelegateVotingPowerEventInstance =
|
|
9826
|
+
TypedEventInstance<DelegateVotingPowerEvent> & {
|
|
9827
|
+
data_decoded: DelegateVotingPowerEvent;
|
|
9828
|
+
type_arguments: [];
|
|
9829
|
+
};
|
|
9858
9830
|
|
|
9859
9831
|
export interface DelegatedVotes {
|
|
9860
9832
|
active_shares: bigint;
|
|
@@ -9954,11 +9926,11 @@ export namespace delegation_pool {
|
|
|
9954
9926
|
}
|
|
9955
9927
|
}
|
|
9956
9928
|
|
|
9957
|
-
export
|
|
9958
|
-
|
|
9959
|
-
|
|
9960
|
-
|
|
9961
|
-
|
|
9929
|
+
export type DisableDelegatorsAllowlistingInstance =
|
|
9930
|
+
TypedEventInstance<DisableDelegatorsAllowlisting> & {
|
|
9931
|
+
data_decoded: DisableDelegatorsAllowlisting;
|
|
9932
|
+
type_arguments: [];
|
|
9933
|
+
};
|
|
9962
9934
|
|
|
9963
9935
|
export interface DistributeCommission {
|
|
9964
9936
|
pool_address: MoveAddressType;
|
|
@@ -9980,11 +9952,11 @@ export namespace delegation_pool {
|
|
|
9980
9952
|
}
|
|
9981
9953
|
}
|
|
9982
9954
|
|
|
9983
|
-
export
|
|
9984
|
-
|
|
9985
|
-
|
|
9986
|
-
|
|
9987
|
-
|
|
9955
|
+
export type DistributeCommissionInstance =
|
|
9956
|
+
TypedEventInstance<DistributeCommission> & {
|
|
9957
|
+
data_decoded: DistributeCommission;
|
|
9958
|
+
type_arguments: [];
|
|
9959
|
+
};
|
|
9988
9960
|
|
|
9989
9961
|
export interface DistributeCommissionEvent {
|
|
9990
9962
|
pool_address: MoveAddressType;
|
|
@@ -10005,11 +9977,11 @@ export namespace delegation_pool {
|
|
|
10005
9977
|
}
|
|
10006
9978
|
}
|
|
10007
9979
|
|
|
10008
|
-
export
|
|
10009
|
-
|
|
10010
|
-
|
|
10011
|
-
|
|
10012
|
-
|
|
9980
|
+
export type DistributeCommissionEventInstance =
|
|
9981
|
+
TypedEventInstance<DistributeCommissionEvent> & {
|
|
9982
|
+
data_decoded: DistributeCommissionEvent;
|
|
9983
|
+
type_arguments: [];
|
|
9984
|
+
};
|
|
10013
9985
|
|
|
10014
9986
|
export interface EnableDelegatorsAllowlisting {
|
|
10015
9987
|
pool_address: MoveAddressType;
|
|
@@ -10028,11 +10000,11 @@ export namespace delegation_pool {
|
|
|
10028
10000
|
}
|
|
10029
10001
|
}
|
|
10030
10002
|
|
|
10031
|
-
export
|
|
10032
|
-
|
|
10033
|
-
|
|
10034
|
-
|
|
10035
|
-
|
|
10003
|
+
export type EnableDelegatorsAllowlistingInstance =
|
|
10004
|
+
TypedEventInstance<EnableDelegatorsAllowlisting> & {
|
|
10005
|
+
data_decoded: EnableDelegatorsAllowlisting;
|
|
10006
|
+
type_arguments: [];
|
|
10007
|
+
};
|
|
10036
10008
|
|
|
10037
10009
|
export interface EvictDelegator {
|
|
10038
10010
|
pool_address: MoveAddressType;
|
|
@@ -10049,11 +10021,10 @@ export namespace delegation_pool {
|
|
|
10049
10021
|
}
|
|
10050
10022
|
}
|
|
10051
10023
|
|
|
10052
|
-
export
|
|
10053
|
-
extends TypedEventInstance<EvictDelegator> {
|
|
10024
|
+
export type EvictDelegatorInstance = TypedEventInstance<EvictDelegator> & {
|
|
10054
10025
|
data_decoded: EvictDelegator;
|
|
10055
10026
|
type_arguments: [];
|
|
10056
|
-
}
|
|
10027
|
+
};
|
|
10057
10028
|
|
|
10058
10029
|
export interface GovernanceRecords {
|
|
10059
10030
|
votes: smart_table.SmartTable<delegation_pool.VotingRecordKey, bigint>;
|
|
@@ -10134,11 +10105,11 @@ export namespace delegation_pool {
|
|
|
10134
10105
|
}
|
|
10135
10106
|
}
|
|
10136
10107
|
|
|
10137
|
-
export
|
|
10138
|
-
|
|
10139
|
-
|
|
10140
|
-
|
|
10141
|
-
|
|
10108
|
+
export type RemoveDelegatorFromAllowlistInstance =
|
|
10109
|
+
TypedEventInstance<RemoveDelegatorFromAllowlist> & {
|
|
10110
|
+
data_decoded: RemoveDelegatorFromAllowlist;
|
|
10111
|
+
type_arguments: [];
|
|
10112
|
+
};
|
|
10142
10113
|
|
|
10143
10114
|
export interface SetBeneficiaryForOperator {
|
|
10144
10115
|
operator: MoveAddressType;
|
|
@@ -10158,11 +10129,11 @@ export namespace delegation_pool {
|
|
|
10158
10129
|
}
|
|
10159
10130
|
}
|
|
10160
10131
|
|
|
10161
|
-
export
|
|
10162
|
-
|
|
10163
|
-
|
|
10164
|
-
|
|
10165
|
-
|
|
10132
|
+
export type SetBeneficiaryForOperatorInstance =
|
|
10133
|
+
TypedEventInstance<SetBeneficiaryForOperator> & {
|
|
10134
|
+
data_decoded: SetBeneficiaryForOperator;
|
|
10135
|
+
type_arguments: [];
|
|
10136
|
+
};
|
|
10166
10137
|
|
|
10167
10138
|
export interface VoteDelegation {
|
|
10168
10139
|
voter: MoveAddressType;
|
|
@@ -11311,10 +11282,10 @@ export namespace reconfiguration {
|
|
|
11311
11282
|
}
|
|
11312
11283
|
}
|
|
11313
11284
|
|
|
11314
|
-
export
|
|
11285
|
+
export type NewEpochInstance = TypedEventInstance<NewEpoch> & {
|
|
11315
11286
|
data_decoded: NewEpoch;
|
|
11316
11287
|
type_arguments: [];
|
|
11317
|
-
}
|
|
11288
|
+
};
|
|
11318
11289
|
|
|
11319
11290
|
export interface NewEpochEvent {
|
|
11320
11291
|
epoch: bigint;
|
|
@@ -11330,11 +11301,10 @@ export namespace reconfiguration {
|
|
|
11330
11301
|
}
|
|
11331
11302
|
}
|
|
11332
11303
|
|
|
11333
|
-
export
|
|
11334
|
-
extends TypedEventInstance<NewEpochEvent> {
|
|
11304
|
+
export type NewEpochEventInstance = TypedEventInstance<NewEpochEvent> & {
|
|
11335
11305
|
data_decoded: NewEpochEvent;
|
|
11336
11306
|
type_arguments: [];
|
|
11337
|
-
}
|
|
11307
|
+
};
|
|
11338
11308
|
|
|
11339
11309
|
export namespace entry {}
|
|
11340
11310
|
export namespace view {}
|
|
@@ -11425,11 +11395,10 @@ export namespace transaction_fee {
|
|
|
11425
11395
|
}
|
|
11426
11396
|
}
|
|
11427
11397
|
|
|
11428
|
-
export
|
|
11429
|
-
extends TypedEventInstance<FeeStatement> {
|
|
11398
|
+
export type FeeStatementInstance = TypedEventInstance<FeeStatement> & {
|
|
11430
11399
|
data_decoded: FeeStatement;
|
|
11431
11400
|
type_arguments: [];
|
|
11432
|
-
}
|
|
11401
|
+
};
|
|
11433
11402
|
|
|
11434
11403
|
export namespace entry {
|
|
11435
11404
|
export async function convertToAptosFaBurnRef(
|
|
@@ -11479,11 +11448,10 @@ export namespace aptos_governance {
|
|
|
11479
11448
|
}
|
|
11480
11449
|
}
|
|
11481
11450
|
|
|
11482
|
-
export
|
|
11483
|
-
extends TypedEventInstance<CreateProposal> {
|
|
11451
|
+
export type CreateProposalInstance = TypedEventInstance<CreateProposal> & {
|
|
11484
11452
|
data_decoded: CreateProposal;
|
|
11485
11453
|
type_arguments: [];
|
|
11486
|
-
}
|
|
11454
|
+
};
|
|
11487
11455
|
|
|
11488
11456
|
export interface CreateProposalEvent {
|
|
11489
11457
|
proposer: MoveAddressType;
|
|
@@ -11505,11 +11473,11 @@ export namespace aptos_governance {
|
|
|
11505
11473
|
}
|
|
11506
11474
|
}
|
|
11507
11475
|
|
|
11508
|
-
export
|
|
11509
|
-
|
|
11510
|
-
|
|
11511
|
-
|
|
11512
|
-
|
|
11476
|
+
export type CreateProposalEventInstance =
|
|
11477
|
+
TypedEventInstance<CreateProposalEvent> & {
|
|
11478
|
+
data_decoded: CreateProposalEvent;
|
|
11479
|
+
type_arguments: [];
|
|
11480
|
+
};
|
|
11513
11481
|
|
|
11514
11482
|
export interface Vote {
|
|
11515
11483
|
proposal_id: bigint;
|
|
@@ -11529,10 +11497,10 @@ export namespace aptos_governance {
|
|
|
11529
11497
|
}
|
|
11530
11498
|
}
|
|
11531
11499
|
|
|
11532
|
-
export
|
|
11500
|
+
export type VoteInstance = TypedEventInstance<Vote> & {
|
|
11533
11501
|
data_decoded: Vote;
|
|
11534
11502
|
type_arguments: [];
|
|
11535
|
-
}
|
|
11503
|
+
};
|
|
11536
11504
|
|
|
11537
11505
|
export interface VoteEvent {
|
|
11538
11506
|
proposal_id: bigint;
|
|
@@ -11552,10 +11520,10 @@ export namespace aptos_governance {
|
|
|
11552
11520
|
}
|
|
11553
11521
|
}
|
|
11554
11522
|
|
|
11555
|
-
export
|
|
11523
|
+
export type VoteEventInstance = TypedEventInstance<VoteEvent> & {
|
|
11556
11524
|
data_decoded: VoteEvent;
|
|
11557
11525
|
type_arguments: [];
|
|
11558
|
-
}
|
|
11526
|
+
};
|
|
11559
11527
|
|
|
11560
11528
|
export interface ApprovedExecutionHashes {
|
|
11561
11529
|
hashes: simple_map.SimpleMap<bigint, string>;
|
|
@@ -11659,11 +11627,10 @@ export namespace aptos_governance {
|
|
|
11659
11627
|
}
|
|
11660
11628
|
}
|
|
11661
11629
|
|
|
11662
|
-
export
|
|
11663
|
-
extends TypedEventInstance<UpdateConfig> {
|
|
11630
|
+
export type UpdateConfigInstance = TypedEventInstance<UpdateConfig> & {
|
|
11664
11631
|
data_decoded: UpdateConfig;
|
|
11665
11632
|
type_arguments: [];
|
|
11666
|
-
}
|
|
11633
|
+
};
|
|
11667
11634
|
|
|
11668
11635
|
export interface UpdateConfigEvent {
|
|
11669
11636
|
min_voting_threshold: bigint;
|
|
@@ -11683,11 +11650,11 @@ export namespace aptos_governance {
|
|
|
11683
11650
|
}
|
|
11684
11651
|
}
|
|
11685
11652
|
|
|
11686
|
-
export
|
|
11687
|
-
|
|
11688
|
-
|
|
11689
|
-
|
|
11690
|
-
|
|
11653
|
+
export type UpdateConfigEventInstance =
|
|
11654
|
+
TypedEventInstance<UpdateConfigEvent> & {
|
|
11655
|
+
data_decoded: UpdateConfigEvent;
|
|
11656
|
+
type_arguments: [];
|
|
11657
|
+
};
|
|
11691
11658
|
|
|
11692
11659
|
export interface VotingRecords {
|
|
11693
11660
|
votes: table.Table<aptos_governance.RecordKey, boolean>;
|
|
@@ -12383,10 +12350,10 @@ export namespace multisig_account {
|
|
|
12383
12350
|
}
|
|
12384
12351
|
}
|
|
12385
12352
|
|
|
12386
|
-
export
|
|
12353
|
+
export type VoteInstance = TypedEventInstance<Vote> & {
|
|
12387
12354
|
data_decoded: Vote;
|
|
12388
12355
|
type_arguments: [];
|
|
12389
|
-
}
|
|
12356
|
+
};
|
|
12390
12357
|
|
|
12391
12358
|
export interface VoteEvent {
|
|
12392
12359
|
owner: MoveAddressType;
|
|
@@ -12404,10 +12371,10 @@ export namespace multisig_account {
|
|
|
12404
12371
|
}
|
|
12405
12372
|
}
|
|
12406
12373
|
|
|
12407
|
-
export
|
|
12374
|
+
export type VoteEventInstance = TypedEventInstance<VoteEvent> & {
|
|
12408
12375
|
data_decoded: VoteEvent;
|
|
12409
12376
|
type_arguments: [];
|
|
12410
|
-
}
|
|
12377
|
+
};
|
|
12411
12378
|
|
|
12412
12379
|
export interface AddOwners {
|
|
12413
12380
|
multisig_account: MoveAddressType;
|
|
@@ -12424,10 +12391,10 @@ export namespace multisig_account {
|
|
|
12424
12391
|
}
|
|
12425
12392
|
}
|
|
12426
12393
|
|
|
12427
|
-
export
|
|
12394
|
+
export type AddOwnersInstance = TypedEventInstance<AddOwners> & {
|
|
12428
12395
|
data_decoded: AddOwners;
|
|
12429
12396
|
type_arguments: [];
|
|
12430
|
-
}
|
|
12397
|
+
};
|
|
12431
12398
|
|
|
12432
12399
|
export interface AddOwnersEvent {
|
|
12433
12400
|
owners_added: MoveAddressType[];
|
|
@@ -12443,11 +12410,10 @@ export namespace multisig_account {
|
|
|
12443
12410
|
}
|
|
12444
12411
|
}
|
|
12445
12412
|
|
|
12446
|
-
export
|
|
12447
|
-
extends TypedEventInstance<AddOwnersEvent> {
|
|
12413
|
+
export type AddOwnersEventInstance = TypedEventInstance<AddOwnersEvent> & {
|
|
12448
12414
|
data_decoded: AddOwnersEvent;
|
|
12449
12415
|
type_arguments: [];
|
|
12450
|
-
}
|
|
12416
|
+
};
|
|
12451
12417
|
|
|
12452
12418
|
export interface CreateTransaction {
|
|
12453
12419
|
multisig_account: MoveAddressType;
|
|
@@ -12468,11 +12434,11 @@ export namespace multisig_account {
|
|
|
12468
12434
|
}
|
|
12469
12435
|
}
|
|
12470
12436
|
|
|
12471
|
-
export
|
|
12472
|
-
|
|
12473
|
-
|
|
12474
|
-
|
|
12475
|
-
|
|
12437
|
+
export type CreateTransactionInstance =
|
|
12438
|
+
TypedEventInstance<CreateTransaction> & {
|
|
12439
|
+
data_decoded: CreateTransaction;
|
|
12440
|
+
type_arguments: [];
|
|
12441
|
+
};
|
|
12476
12442
|
|
|
12477
12443
|
export interface CreateTransactionEvent {
|
|
12478
12444
|
creator: MoveAddressType;
|
|
@@ -12492,11 +12458,11 @@ export namespace multisig_account {
|
|
|
12492
12458
|
}
|
|
12493
12459
|
}
|
|
12494
12460
|
|
|
12495
|
-
export
|
|
12496
|
-
|
|
12497
|
-
|
|
12498
|
-
|
|
12499
|
-
|
|
12461
|
+
export type CreateTransactionEventInstance =
|
|
12462
|
+
TypedEventInstance<CreateTransactionEvent> & {
|
|
12463
|
+
data_decoded: CreateTransactionEvent;
|
|
12464
|
+
type_arguments: [];
|
|
12465
|
+
};
|
|
12500
12466
|
|
|
12501
12467
|
export interface ExecuteRejectedTransaction {
|
|
12502
12468
|
multisig_account: MoveAddressType;
|
|
@@ -12518,11 +12484,11 @@ export namespace multisig_account {
|
|
|
12518
12484
|
}
|
|
12519
12485
|
}
|
|
12520
12486
|
|
|
12521
|
-
export
|
|
12522
|
-
|
|
12523
|
-
|
|
12524
|
-
|
|
12525
|
-
|
|
12487
|
+
export type ExecuteRejectedTransactionInstance =
|
|
12488
|
+
TypedEventInstance<ExecuteRejectedTransaction> & {
|
|
12489
|
+
data_decoded: ExecuteRejectedTransaction;
|
|
12490
|
+
type_arguments: [];
|
|
12491
|
+
};
|
|
12526
12492
|
|
|
12527
12493
|
export interface ExecuteRejectedTransactionEvent {
|
|
12528
12494
|
sequence_number: bigint;
|
|
@@ -12543,11 +12509,11 @@ export namespace multisig_account {
|
|
|
12543
12509
|
}
|
|
12544
12510
|
}
|
|
12545
12511
|
|
|
12546
|
-
export
|
|
12547
|
-
|
|
12548
|
-
|
|
12549
|
-
|
|
12550
|
-
|
|
12512
|
+
export type ExecuteRejectedTransactionEventInstance =
|
|
12513
|
+
TypedEventInstance<ExecuteRejectedTransactionEvent> & {
|
|
12514
|
+
data_decoded: ExecuteRejectedTransactionEvent;
|
|
12515
|
+
type_arguments: [];
|
|
12516
|
+
};
|
|
12551
12517
|
|
|
12552
12518
|
export interface ExecutionError {
|
|
12553
12519
|
abort_location: string;
|
|
@@ -12583,11 +12549,10 @@ export namespace multisig_account {
|
|
|
12583
12549
|
}
|
|
12584
12550
|
}
|
|
12585
12551
|
|
|
12586
|
-
export
|
|
12587
|
-
extends TypedEventInstance<MetadataUpdated> {
|
|
12552
|
+
export type MetadataUpdatedInstance = TypedEventInstance<MetadataUpdated> & {
|
|
12588
12553
|
data_decoded: MetadataUpdated;
|
|
12589
12554
|
type_arguments: [];
|
|
12590
|
-
}
|
|
12555
|
+
};
|
|
12591
12556
|
|
|
12592
12557
|
export interface MetadataUpdatedEvent {
|
|
12593
12558
|
old_metadata: simple_map.SimpleMap<string, string>;
|
|
@@ -12606,11 +12571,11 @@ export namespace multisig_account {
|
|
|
12606
12571
|
}
|
|
12607
12572
|
}
|
|
12608
12573
|
|
|
12609
|
-
export
|
|
12610
|
-
|
|
12611
|
-
|
|
12612
|
-
|
|
12613
|
-
|
|
12574
|
+
export type MetadataUpdatedEventInstance =
|
|
12575
|
+
TypedEventInstance<MetadataUpdatedEvent> & {
|
|
12576
|
+
data_decoded: MetadataUpdatedEvent;
|
|
12577
|
+
type_arguments: [];
|
|
12578
|
+
};
|
|
12614
12579
|
|
|
12615
12580
|
export interface MultisigAccount {
|
|
12616
12581
|
owners: MoveAddressType[];
|
|
@@ -12721,11 +12686,10 @@ export namespace multisig_account {
|
|
|
12721
12686
|
}
|
|
12722
12687
|
}
|
|
12723
12688
|
|
|
12724
|
-
export
|
|
12725
|
-
extends TypedEventInstance<RemoveOwners> {
|
|
12689
|
+
export type RemoveOwnersInstance = TypedEventInstance<RemoveOwners> & {
|
|
12726
12690
|
data_decoded: RemoveOwners;
|
|
12727
12691
|
type_arguments: [];
|
|
12728
|
-
}
|
|
12692
|
+
};
|
|
12729
12693
|
|
|
12730
12694
|
export interface RemoveOwnersEvent {
|
|
12731
12695
|
owners_removed: MoveAddressType[];
|
|
@@ -12743,11 +12707,11 @@ export namespace multisig_account {
|
|
|
12743
12707
|
}
|
|
12744
12708
|
}
|
|
12745
12709
|
|
|
12746
|
-
export
|
|
12747
|
-
|
|
12748
|
-
|
|
12749
|
-
|
|
12750
|
-
|
|
12710
|
+
export type RemoveOwnersEventInstance =
|
|
12711
|
+
TypedEventInstance<RemoveOwnersEvent> & {
|
|
12712
|
+
data_decoded: RemoveOwnersEvent;
|
|
12713
|
+
type_arguments: [];
|
|
12714
|
+
};
|
|
12751
12715
|
|
|
12752
12716
|
export interface TransactionExecutionFailed {
|
|
12753
12717
|
multisig_account: MoveAddressType;
|
|
@@ -12771,11 +12735,11 @@ export namespace multisig_account {
|
|
|
12771
12735
|
}
|
|
12772
12736
|
}
|
|
12773
12737
|
|
|
12774
|
-
export
|
|
12775
|
-
|
|
12776
|
-
|
|
12777
|
-
|
|
12778
|
-
|
|
12738
|
+
export type TransactionExecutionFailedInstance =
|
|
12739
|
+
TypedEventInstance<TransactionExecutionFailed> & {
|
|
12740
|
+
data_decoded: TransactionExecutionFailed;
|
|
12741
|
+
type_arguments: [];
|
|
12742
|
+
};
|
|
12779
12743
|
|
|
12780
12744
|
export interface TransactionExecutionFailedEvent {
|
|
12781
12745
|
executor: MoveAddressType;
|
|
@@ -12798,11 +12762,11 @@ export namespace multisig_account {
|
|
|
12798
12762
|
}
|
|
12799
12763
|
}
|
|
12800
12764
|
|
|
12801
|
-
export
|
|
12802
|
-
|
|
12803
|
-
|
|
12804
|
-
|
|
12805
|
-
|
|
12765
|
+
export type TransactionExecutionFailedEventInstance =
|
|
12766
|
+
TypedEventInstance<TransactionExecutionFailedEvent> & {
|
|
12767
|
+
data_decoded: TransactionExecutionFailedEvent;
|
|
12768
|
+
type_arguments: [];
|
|
12769
|
+
};
|
|
12806
12770
|
|
|
12807
12771
|
export interface TransactionExecutionSucceeded {
|
|
12808
12772
|
multisig_account: MoveAddressType;
|
|
@@ -12825,11 +12789,11 @@ export namespace multisig_account {
|
|
|
12825
12789
|
}
|
|
12826
12790
|
}
|
|
12827
12791
|
|
|
12828
|
-
export
|
|
12829
|
-
|
|
12830
|
-
|
|
12831
|
-
|
|
12832
|
-
|
|
12792
|
+
export type TransactionExecutionSucceededInstance =
|
|
12793
|
+
TypedEventInstance<TransactionExecutionSucceeded> & {
|
|
12794
|
+
data_decoded: TransactionExecutionSucceeded;
|
|
12795
|
+
type_arguments: [];
|
|
12796
|
+
};
|
|
12833
12797
|
|
|
12834
12798
|
export interface TransactionExecutionSucceededEvent {
|
|
12835
12799
|
executor: MoveAddressType;
|
|
@@ -12851,11 +12815,11 @@ export namespace multisig_account {
|
|
|
12851
12815
|
}
|
|
12852
12816
|
}
|
|
12853
12817
|
|
|
12854
|
-
export
|
|
12855
|
-
|
|
12856
|
-
|
|
12857
|
-
|
|
12858
|
-
|
|
12818
|
+
export type TransactionExecutionSucceededEventInstance =
|
|
12819
|
+
TypedEventInstance<TransactionExecutionSucceededEvent> & {
|
|
12820
|
+
data_decoded: TransactionExecutionSucceededEvent;
|
|
12821
|
+
type_arguments: [];
|
|
12822
|
+
};
|
|
12859
12823
|
|
|
12860
12824
|
export interface UpdateSignaturesRequired {
|
|
12861
12825
|
multisig_account: MoveAddressType;
|
|
@@ -12875,11 +12839,11 @@ export namespace multisig_account {
|
|
|
12875
12839
|
}
|
|
12876
12840
|
}
|
|
12877
12841
|
|
|
12878
|
-
export
|
|
12879
|
-
|
|
12880
|
-
|
|
12881
|
-
|
|
12882
|
-
|
|
12842
|
+
export type UpdateSignaturesRequiredInstance =
|
|
12843
|
+
TypedEventInstance<UpdateSignaturesRequired> & {
|
|
12844
|
+
data_decoded: UpdateSignaturesRequired;
|
|
12845
|
+
type_arguments: [];
|
|
12846
|
+
};
|
|
12883
12847
|
|
|
12884
12848
|
export interface UpdateSignaturesRequiredEvent {
|
|
12885
12849
|
old_num_signatures_required: bigint;
|
|
@@ -12899,11 +12863,11 @@ export namespace multisig_account {
|
|
|
12899
12863
|
}
|
|
12900
12864
|
}
|
|
12901
12865
|
|
|
12902
|
-
export
|
|
12903
|
-
|
|
12904
|
-
|
|
12905
|
-
|
|
12906
|
-
|
|
12866
|
+
export type UpdateSignaturesRequiredEventInstance =
|
|
12867
|
+
TypedEventInstance<UpdateSignaturesRequiredEvent> & {
|
|
12868
|
+
data_decoded: UpdateSignaturesRequiredEvent;
|
|
12869
|
+
type_arguments: [];
|
|
12870
|
+
};
|
|
12907
12871
|
|
|
12908
12872
|
export namespace entry {
|
|
12909
12873
|
export async function create(
|
|
@@ -14045,10 +14009,10 @@ export namespace staking_contract {
|
|
|
14045
14009
|
}
|
|
14046
14010
|
}
|
|
14047
14011
|
|
|
14048
|
-
export
|
|
14012
|
+
export type AddStakeInstance = TypedEventInstance<AddStake> & {
|
|
14049
14013
|
data_decoded: AddStake;
|
|
14050
14014
|
type_arguments: [];
|
|
14051
|
-
}
|
|
14015
|
+
};
|
|
14052
14016
|
|
|
14053
14017
|
export interface AddStakeEvent {
|
|
14054
14018
|
operator: MoveAddressType;
|
|
@@ -14066,11 +14030,10 @@ export namespace staking_contract {
|
|
|
14066
14030
|
}
|
|
14067
14031
|
}
|
|
14068
14032
|
|
|
14069
|
-
export
|
|
14070
|
-
extends TypedEventInstance<AddStakeEvent> {
|
|
14033
|
+
export type AddStakeEventInstance = TypedEventInstance<AddStakeEvent> & {
|
|
14071
14034
|
data_decoded: AddStakeEvent;
|
|
14072
14035
|
type_arguments: [];
|
|
14073
|
-
}
|
|
14036
|
+
};
|
|
14074
14037
|
|
|
14075
14038
|
export interface UnlockStake {
|
|
14076
14039
|
operator: MoveAddressType;
|
|
@@ -14089,10 +14052,10 @@ export namespace staking_contract {
|
|
|
14089
14052
|
}
|
|
14090
14053
|
}
|
|
14091
14054
|
|
|
14092
|
-
export
|
|
14055
|
+
export type UnlockStakeInstance = TypedEventInstance<UnlockStake> & {
|
|
14093
14056
|
data_decoded: UnlockStake;
|
|
14094
14057
|
type_arguments: [];
|
|
14095
|
-
}
|
|
14058
|
+
};
|
|
14096
14059
|
|
|
14097
14060
|
export interface UnlockStakeEvent {
|
|
14098
14061
|
operator: MoveAddressType;
|
|
@@ -14113,11 +14076,11 @@ export namespace staking_contract {
|
|
|
14113
14076
|
}
|
|
14114
14077
|
}
|
|
14115
14078
|
|
|
14116
|
-
export
|
|
14117
|
-
|
|
14118
|
-
|
|
14119
|
-
|
|
14120
|
-
|
|
14079
|
+
export type UnlockStakeEventInstance =
|
|
14080
|
+
TypedEventInstance<UnlockStakeEvent> & {
|
|
14081
|
+
data_decoded: UnlockStakeEvent;
|
|
14082
|
+
type_arguments: [];
|
|
14083
|
+
};
|
|
14121
14084
|
|
|
14122
14085
|
export interface BeneficiaryForOperator {
|
|
14123
14086
|
beneficiary_for_operator: MoveAddressType;
|
|
@@ -14154,11 +14117,11 @@ export namespace staking_contract {
|
|
|
14154
14117
|
}
|
|
14155
14118
|
}
|
|
14156
14119
|
|
|
14157
|
-
export
|
|
14158
|
-
|
|
14159
|
-
|
|
14160
|
-
|
|
14161
|
-
|
|
14120
|
+
export type SetBeneficiaryForOperatorInstance =
|
|
14121
|
+
TypedEventInstance<SetBeneficiaryForOperator> & {
|
|
14122
|
+
data_decoded: SetBeneficiaryForOperator;
|
|
14123
|
+
type_arguments: [];
|
|
14124
|
+
};
|
|
14162
14125
|
|
|
14163
14126
|
export interface AddDistribution {
|
|
14164
14127
|
operator: MoveAddressType;
|
|
@@ -14178,11 +14141,10 @@ export namespace staking_contract {
|
|
|
14178
14141
|
}
|
|
14179
14142
|
}
|
|
14180
14143
|
|
|
14181
|
-
export
|
|
14182
|
-
extends TypedEventInstance<AddDistribution> {
|
|
14144
|
+
export type AddDistributionInstance = TypedEventInstance<AddDistribution> & {
|
|
14183
14145
|
data_decoded: AddDistribution;
|
|
14184
14146
|
type_arguments: [];
|
|
14185
|
-
}
|
|
14147
|
+
};
|
|
14186
14148
|
|
|
14187
14149
|
export interface AddDistributionEvent {
|
|
14188
14150
|
operator: MoveAddressType;
|
|
@@ -14202,11 +14164,11 @@ export namespace staking_contract {
|
|
|
14202
14164
|
}
|
|
14203
14165
|
}
|
|
14204
14166
|
|
|
14205
|
-
export
|
|
14206
|
-
|
|
14207
|
-
|
|
14208
|
-
|
|
14209
|
-
|
|
14167
|
+
export type AddDistributionEventInstance =
|
|
14168
|
+
TypedEventInstance<AddDistributionEvent> & {
|
|
14169
|
+
data_decoded: AddDistributionEvent;
|
|
14170
|
+
type_arguments: [];
|
|
14171
|
+
};
|
|
14210
14172
|
|
|
14211
14173
|
export interface CreateStakingContract {
|
|
14212
14174
|
operator: MoveAddressType;
|
|
@@ -14228,11 +14190,11 @@ export namespace staking_contract {
|
|
|
14228
14190
|
}
|
|
14229
14191
|
}
|
|
14230
14192
|
|
|
14231
|
-
export
|
|
14232
|
-
|
|
14233
|
-
|
|
14234
|
-
|
|
14235
|
-
|
|
14193
|
+
export type CreateStakingContractInstance =
|
|
14194
|
+
TypedEventInstance<CreateStakingContract> & {
|
|
14195
|
+
data_decoded: CreateStakingContract;
|
|
14196
|
+
type_arguments: [];
|
|
14197
|
+
};
|
|
14236
14198
|
|
|
14237
14199
|
export interface CreateStakingContractEvent {
|
|
14238
14200
|
operator: MoveAddressType;
|
|
@@ -14255,11 +14217,11 @@ export namespace staking_contract {
|
|
|
14255
14217
|
}
|
|
14256
14218
|
}
|
|
14257
14219
|
|
|
14258
|
-
export
|
|
14259
|
-
|
|
14260
|
-
|
|
14261
|
-
|
|
14262
|
-
|
|
14220
|
+
export type CreateStakingContractEventInstance =
|
|
14221
|
+
TypedEventInstance<CreateStakingContractEvent> & {
|
|
14222
|
+
data_decoded: CreateStakingContractEvent;
|
|
14223
|
+
type_arguments: [];
|
|
14224
|
+
};
|
|
14263
14225
|
|
|
14264
14226
|
export interface Distribute {
|
|
14265
14227
|
operator: MoveAddressType;
|
|
@@ -14278,10 +14240,10 @@ export namespace staking_contract {
|
|
|
14278
14240
|
}
|
|
14279
14241
|
}
|
|
14280
14242
|
|
|
14281
|
-
export
|
|
14243
|
+
export type DistributeInstance = TypedEventInstance<Distribute> & {
|
|
14282
14244
|
data_decoded: Distribute;
|
|
14283
14245
|
type_arguments: [];
|
|
14284
|
-
}
|
|
14246
|
+
};
|
|
14285
14247
|
|
|
14286
14248
|
export interface DistributeEvent {
|
|
14287
14249
|
operator: MoveAddressType;
|
|
@@ -14302,11 +14264,10 @@ export namespace staking_contract {
|
|
|
14302
14264
|
}
|
|
14303
14265
|
}
|
|
14304
14266
|
|
|
14305
|
-
export
|
|
14306
|
-
extends TypedEventInstance<DistributeEvent> {
|
|
14267
|
+
export type DistributeEventInstance = TypedEventInstance<DistributeEvent> & {
|
|
14307
14268
|
data_decoded: DistributeEvent;
|
|
14308
14269
|
type_arguments: [];
|
|
14309
|
-
}
|
|
14270
|
+
};
|
|
14310
14271
|
|
|
14311
14272
|
export interface RequestCommission {
|
|
14312
14273
|
operator: MoveAddressType;
|
|
@@ -14327,11 +14288,11 @@ export namespace staking_contract {
|
|
|
14327
14288
|
}
|
|
14328
14289
|
}
|
|
14329
14290
|
|
|
14330
|
-
export
|
|
14331
|
-
|
|
14332
|
-
|
|
14333
|
-
|
|
14334
|
-
|
|
14291
|
+
export type RequestCommissionInstance =
|
|
14292
|
+
TypedEventInstance<RequestCommission> & {
|
|
14293
|
+
data_decoded: RequestCommission;
|
|
14294
|
+
type_arguments: [];
|
|
14295
|
+
};
|
|
14335
14296
|
|
|
14336
14297
|
export interface RequestCommissionEvent {
|
|
14337
14298
|
operator: MoveAddressType;
|
|
@@ -14352,11 +14313,11 @@ export namespace staking_contract {
|
|
|
14352
14313
|
}
|
|
14353
14314
|
}
|
|
14354
14315
|
|
|
14355
|
-
export
|
|
14356
|
-
|
|
14357
|
-
|
|
14358
|
-
|
|
14359
|
-
|
|
14316
|
+
export type RequestCommissionEventInstance =
|
|
14317
|
+
TypedEventInstance<RequestCommissionEvent> & {
|
|
14318
|
+
data_decoded: RequestCommissionEvent;
|
|
14319
|
+
type_arguments: [];
|
|
14320
|
+
};
|
|
14360
14321
|
|
|
14361
14322
|
export interface ResetLockup {
|
|
14362
14323
|
operator: MoveAddressType;
|
|
@@ -14373,10 +14334,10 @@ export namespace staking_contract {
|
|
|
14373
14334
|
}
|
|
14374
14335
|
}
|
|
14375
14336
|
|
|
14376
|
-
export
|
|
14337
|
+
export type ResetLockupInstance = TypedEventInstance<ResetLockup> & {
|
|
14377
14338
|
data_decoded: ResetLockup;
|
|
14378
14339
|
type_arguments: [];
|
|
14379
|
-
}
|
|
14340
|
+
};
|
|
14380
14341
|
|
|
14381
14342
|
export interface ResetLockupEvent {
|
|
14382
14343
|
operator: MoveAddressType;
|
|
@@ -14395,11 +14356,11 @@ export namespace staking_contract {
|
|
|
14395
14356
|
}
|
|
14396
14357
|
}
|
|
14397
14358
|
|
|
14398
|
-
export
|
|
14399
|
-
|
|
14400
|
-
|
|
14401
|
-
|
|
14402
|
-
|
|
14359
|
+
export type ResetLockupEventInstance =
|
|
14360
|
+
TypedEventInstance<ResetLockupEvent> & {
|
|
14361
|
+
data_decoded: ResetLockupEvent;
|
|
14362
|
+
type_arguments: [];
|
|
14363
|
+
};
|
|
14403
14364
|
|
|
14404
14365
|
export interface StakingContract {
|
|
14405
14366
|
principal: bigint;
|
|
@@ -14455,11 +14416,11 @@ export namespace staking_contract {
|
|
|
14455
14416
|
}
|
|
14456
14417
|
}
|
|
14457
14418
|
|
|
14458
|
-
export
|
|
14459
|
-
|
|
14460
|
-
|
|
14461
|
-
|
|
14462
|
-
|
|
14419
|
+
export type StakingGroupUpdateCommissionEventInstance =
|
|
14420
|
+
TypedEventInstance<StakingGroupUpdateCommissionEvent> & {
|
|
14421
|
+
data_decoded: StakingGroupUpdateCommissionEvent;
|
|
14422
|
+
type_arguments: [];
|
|
14423
|
+
};
|
|
14463
14424
|
|
|
14464
14425
|
export interface Store {
|
|
14465
14426
|
staking_contracts: simple_map.SimpleMap<
|
|
@@ -14503,11 +14464,10 @@ export namespace staking_contract {
|
|
|
14503
14464
|
}
|
|
14504
14465
|
}
|
|
14505
14466
|
|
|
14506
|
-
export
|
|
14507
|
-
extends TypedEventInstance<SwitchOperator> {
|
|
14467
|
+
export type SwitchOperatorInstance = TypedEventInstance<SwitchOperator> & {
|
|
14508
14468
|
data_decoded: SwitchOperator;
|
|
14509
14469
|
type_arguments: [];
|
|
14510
|
-
}
|
|
14470
|
+
};
|
|
14511
14471
|
|
|
14512
14472
|
export interface SwitchOperatorEvent {
|
|
14513
14473
|
old_operator: MoveAddressType;
|
|
@@ -14527,11 +14487,11 @@ export namespace staking_contract {
|
|
|
14527
14487
|
}
|
|
14528
14488
|
}
|
|
14529
14489
|
|
|
14530
|
-
export
|
|
14531
|
-
|
|
14532
|
-
|
|
14533
|
-
|
|
14534
|
-
|
|
14490
|
+
export type SwitchOperatorEventInstance =
|
|
14491
|
+
TypedEventInstance<SwitchOperatorEvent> & {
|
|
14492
|
+
data_decoded: SwitchOperatorEvent;
|
|
14493
|
+
type_arguments: [];
|
|
14494
|
+
};
|
|
14535
14495
|
|
|
14536
14496
|
export interface UpdateCommission {
|
|
14537
14497
|
staker: MoveAddressType;
|
|
@@ -14552,11 +14512,11 @@ export namespace staking_contract {
|
|
|
14552
14512
|
}
|
|
14553
14513
|
}
|
|
14554
14514
|
|
|
14555
|
-
export
|
|
14556
|
-
|
|
14557
|
-
|
|
14558
|
-
|
|
14559
|
-
|
|
14515
|
+
export type UpdateCommissionInstance =
|
|
14516
|
+
TypedEventInstance<UpdateCommission> & {
|
|
14517
|
+
data_decoded: UpdateCommission;
|
|
14518
|
+
type_arguments: [];
|
|
14519
|
+
};
|
|
14560
14520
|
|
|
14561
14521
|
export interface UpdateCommissionEvent {
|
|
14562
14522
|
staker: MoveAddressType;
|
|
@@ -14577,11 +14537,11 @@ export namespace staking_contract {
|
|
|
14577
14537
|
}
|
|
14578
14538
|
}
|
|
14579
14539
|
|
|
14580
|
-
export
|
|
14581
|
-
|
|
14582
|
-
|
|
14583
|
-
|
|
14584
|
-
|
|
14540
|
+
export type UpdateCommissionEventInstance =
|
|
14541
|
+
TypedEventInstance<UpdateCommissionEvent> & {
|
|
14542
|
+
data_decoded: UpdateCommissionEvent;
|
|
14543
|
+
type_arguments: [];
|
|
14544
|
+
};
|
|
14585
14545
|
|
|
14586
14546
|
export interface UpdateVoter {
|
|
14587
14547
|
operator: MoveAddressType;
|
|
@@ -14600,10 +14560,10 @@ export namespace staking_contract {
|
|
|
14600
14560
|
}
|
|
14601
14561
|
}
|
|
14602
14562
|
|
|
14603
|
-
export
|
|
14563
|
+
export type UpdateVoterInstance = TypedEventInstance<UpdateVoter> & {
|
|
14604
14564
|
data_decoded: UpdateVoter;
|
|
14605
14565
|
type_arguments: [];
|
|
14606
|
-
}
|
|
14566
|
+
};
|
|
14607
14567
|
|
|
14608
14568
|
export interface UpdateVoterEvent {
|
|
14609
14569
|
operator: MoveAddressType;
|
|
@@ -14624,11 +14584,11 @@ export namespace staking_contract {
|
|
|
14624
14584
|
}
|
|
14625
14585
|
}
|
|
14626
14586
|
|
|
14627
|
-
export
|
|
14628
|
-
|
|
14629
|
-
|
|
14630
|
-
|
|
14631
|
-
|
|
14587
|
+
export type UpdateVoterEventInstance =
|
|
14588
|
+
TypedEventInstance<UpdateVoterEvent> & {
|
|
14589
|
+
data_decoded: UpdateVoterEvent;
|
|
14590
|
+
type_arguments: [];
|
|
14591
|
+
};
|
|
14632
14592
|
|
|
14633
14593
|
export namespace entry {
|
|
14634
14594
|
export async function addStake(
|
|
@@ -15544,10 +15504,10 @@ export namespace object_code_deployment {
|
|
|
15544
15504
|
}
|
|
15545
15505
|
}
|
|
15546
15506
|
|
|
15547
|
-
export
|
|
15507
|
+
export type FreezeInstance = TypedEventInstance<Freeze> & {
|
|
15548
15508
|
data_decoded: Freeze;
|
|
15549
15509
|
type_arguments: [];
|
|
15550
|
-
}
|
|
15510
|
+
};
|
|
15551
15511
|
|
|
15552
15512
|
export interface ManagingRefs {
|
|
15553
15513
|
extend_ref: object$.ExtendRef;
|
|
@@ -15577,10 +15537,10 @@ export namespace object_code_deployment {
|
|
|
15577
15537
|
}
|
|
15578
15538
|
}
|
|
15579
15539
|
|
|
15580
|
-
export
|
|
15540
|
+
export type PublishInstance = TypedEventInstance<Publish> & {
|
|
15581
15541
|
data_decoded: Publish;
|
|
15582
15542
|
type_arguments: [];
|
|
15583
|
-
}
|
|
15543
|
+
};
|
|
15584
15544
|
|
|
15585
15545
|
export interface Upgrade {
|
|
15586
15546
|
object_address: MoveAddressType;
|
|
@@ -15596,10 +15556,10 @@ export namespace object_code_deployment {
|
|
|
15596
15556
|
}
|
|
15597
15557
|
}
|
|
15598
15558
|
|
|
15599
|
-
export
|
|
15559
|
+
export type UpgradeInstance = TypedEventInstance<Upgrade> & {
|
|
15600
15560
|
data_decoded: Upgrade;
|
|
15601
15561
|
type_arguments: [];
|
|
15602
|
-
}
|
|
15562
|
+
};
|
|
15603
15563
|
|
|
15604
15564
|
export namespace entry {
|
|
15605
15565
|
export async function freezeCodeObject(
|