@sentio/sdk 2.28.4-rc.3 → 2.29.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/api.d.ts +2 -2
- package/lib/aptos/api.d.ts.map +1 -1
- package/lib/aptos/api.js +2 -2
- package/lib/aptos/api.js.map +1 -1
- package/lib/aptos/aptos-processor.d.ts +4 -3
- package/lib/aptos/aptos-processor.d.ts.map +1 -1
- package/lib/aptos/aptos-processor.js.map +1 -1
- package/lib/aptos/aptos-resource-processor-template.d.ts +1 -1
- package/lib/aptos/aptos-resource-processor-template.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.d.ts +431 -385
- 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 +95 -55
- 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 +18 -13
- package/lib/aptos/builtin/0x4.d.ts.map +1 -1
- package/lib/aptos/builtin/0x4.js.map +1 -1
- package/lib/aptos/codegen/codegen.js +3 -2
- package/lib/aptos/codegen/codegen.js.map +1 -1
- package/lib/aptos/codegen/types.test.js.map +1 -1
- package/lib/aptos/context.d.ts +6 -6
- package/lib/aptos/context.d.ts.map +1 -1
- package/lib/aptos/context.js +7 -5
- package/lib/aptos/context.js.map +1 -1
- package/lib/aptos/ext/aptos-dex.d.ts +2 -1
- package/lib/aptos/ext/aptos-dex.d.ts.map +1 -1
- package/lib/aptos/ext/aptos-dex.js.map +1 -1
- package/lib/aptos/ext/coin-event.d.ts +4 -4
- package/lib/aptos/ext/coin-event.d.ts.map +1 -1
- package/lib/aptos/ext/coin-event.js.map +1 -1
- package/lib/aptos/ext/coin-event.test.js.map +1 -1
- package/lib/aptos/index.d.ts +0 -1
- package/lib/aptos/index.d.ts.map +1 -1
- package/lib/aptos/index.js.map +1 -1
- package/lib/aptos/models.d.ts +2 -2
- package/lib/aptos/models.d.ts.map +1 -1
- package/lib/aptos/network.d.ts +3 -3
- package/lib/aptos/network.d.ts.map +1 -1
- package/lib/aptos/network.js +7 -4
- package/lib/aptos/network.js.map +1 -1
- package/lib/eth/base-processor.d.ts.map +1 -1
- package/lib/eth/base-processor.js +15 -12
- package/lib/eth/base-processor.js.map +1 -1
- package/lib/eth/context.d.ts +2 -2
- package/lib/eth/context.d.ts.map +1 -1
- package/lib/eth/context.js +1 -1
- package/lib/eth/context.js.map +1 -1
- package/lib/testing/aptos-facet.d.ts +4 -4
- package/lib/testing/aptos-facet.d.ts.map +1 -1
- package/lib/testing/aptos-facet.js.map +1 -1
- package/lib/tsup.config.ts +1 -2
- package/package.json +14 -15
- package/src/aptos/api.ts +3 -3
- package/src/aptos/aptos-processor.ts +9 -14
- package/src/aptos/aptos-resource-processor-template.ts +1 -1
- package/src/aptos/builtin/0x1.ts +444 -384
- package/src/aptos/builtin/0x3.ts +109 -48
- package/src/aptos/builtin/0x4.ts +35 -14
- package/src/aptos/codegen/codegen.ts +6 -3
- package/src/aptos/context.ts +19 -10
- package/src/aptos/ext/aptos-dex.ts +2 -8
- package/src/aptos/ext/coin-event.ts +7 -12
- package/src/aptos/index.ts +0 -10
- package/src/aptos/models.ts +3 -2
- package/src/aptos/network.ts +8 -6
- package/src/eth/base-processor.ts +24 -12
- package/src/eth/context.ts +2 -1
- package/src/testing/aptos-facet.ts +7 -7
- package/src/tsup.config.ts +1 -2
package/src/aptos/builtin/0x1.ts
CHANGED
@@ -9,8 +9,6 @@ import { MoveCoder, TypedEventInstance } from "@typemove/aptos";
|
|
9
9
|
|
10
10
|
import { defaultMoveCoder } from "@sentio/sdk/aptos";
|
11
11
|
|
12
|
-
import { Address } from "@typemove/aptos";
|
13
|
-
|
14
12
|
import { CallFilter, MoveFetchConfig } from "@sentio/sdk/move";
|
15
13
|
import {
|
16
14
|
AptosBindOptions,
|
@@ -19,6 +17,15 @@ import {
|
|
19
17
|
TypedFunctionPayload,
|
20
18
|
AptosContext,
|
21
19
|
} from "@sentio/sdk/aptos";
|
20
|
+
import {
|
21
|
+
Aptos,
|
22
|
+
Account as AptosAccount,
|
23
|
+
MoveAddressType,
|
24
|
+
PendingTransactionResponse,
|
25
|
+
InputGenerateTransactionOptions,
|
26
|
+
MoveStructId,
|
27
|
+
InputViewRequestData,
|
28
|
+
} from "@aptos-labs/ts-sdk";
|
22
29
|
|
23
30
|
export class acl extends AptosBaseProcessor {
|
24
31
|
constructor(options: AptosBindOptions) {
|
@@ -44,7 +51,7 @@ export class acl extends AptosBaseProcessor {
|
|
44
51
|
|
45
52
|
export namespace acl {
|
46
53
|
export interface ACL {
|
47
|
-
list:
|
54
|
+
list: MoveAddressType[];
|
48
55
|
}
|
49
56
|
|
50
57
|
export namespace ACL {
|
@@ -181,7 +188,7 @@ export class code extends AptosBaseProcessor {
|
|
181
188
|
|
182
189
|
export namespace code {
|
183
190
|
export interface AllowedDep {
|
184
|
-
account:
|
191
|
+
account: MoveAddressType;
|
185
192
|
module_name: string;
|
186
193
|
}
|
187
194
|
|
@@ -219,7 +226,7 @@ export namespace code {
|
|
219
226
|
}
|
220
227
|
|
221
228
|
export interface PackageDep {
|
222
|
-
account:
|
229
|
+
account: MoveAddressType;
|
223
230
|
package_name: string;
|
224
231
|
}
|
225
232
|
|
@@ -592,20 +599,20 @@ export namespace coin {
|
|
592
599
|
}
|
593
600
|
|
594
601
|
export interface FreezeCoinStorePayload<T0 = any>
|
595
|
-
extends TypedFunctionPayload<[
|
596
|
-
arguments_decoded: [
|
602
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
603
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
597
604
|
type_arguments: [string];
|
598
605
|
}
|
599
606
|
|
600
607
|
export interface TransferPayload<T0 = any>
|
601
|
-
extends TypedFunctionPayload<[
|
602
|
-
arguments_decoded: [
|
608
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
609
|
+
arguments_decoded: [MoveAddressType, bigint];
|
603
610
|
type_arguments: [string];
|
604
611
|
}
|
605
612
|
|
606
613
|
export interface UnfreezeCoinStorePayload<T0 = any>
|
607
|
-
extends TypedFunctionPayload<[
|
608
|
-
arguments_decoded: [
|
614
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
615
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
609
616
|
type_arguments: [string];
|
610
617
|
}
|
611
618
|
|
@@ -668,7 +675,7 @@ export namespace guid {
|
|
668
675
|
|
669
676
|
export interface ID {
|
670
677
|
creation_num: bigint;
|
671
|
-
addr:
|
678
|
+
addr: MoveAddressType;
|
672
679
|
}
|
673
680
|
|
674
681
|
export namespace ID {
|
@@ -747,12 +754,12 @@ export namespace block {
|
|
747
754
|
}
|
748
755
|
|
749
756
|
export interface NewBlockEvent {
|
750
|
-
hash:
|
757
|
+
hash: MoveAddressType;
|
751
758
|
epoch: bigint;
|
752
759
|
round: bigint;
|
753
760
|
height: bigint;
|
754
761
|
previous_block_votes_bitvec: string;
|
755
|
-
proposer:
|
762
|
+
proposer: MoveAddressType;
|
756
763
|
failed_proposer_indices: bigint[];
|
757
764
|
time_microseconds: bigint;
|
758
765
|
}
|
@@ -1223,7 +1230,7 @@ export class stake extends AptosBaseProcessor {
|
|
1223
1230
|
|
1224
1231
|
export namespace stake {
|
1225
1232
|
export interface AddStakeEvent {
|
1226
|
-
pool_address:
|
1233
|
+
pool_address: MoveAddressType;
|
1227
1234
|
amount_added: bigint;
|
1228
1235
|
}
|
1229
1236
|
|
@@ -1244,7 +1251,7 @@ export namespace stake {
|
|
1244
1251
|
}
|
1245
1252
|
|
1246
1253
|
export interface AllowedValidators {
|
1247
|
-
accounts:
|
1254
|
+
accounts: MoveAddressType[];
|
1248
1255
|
}
|
1249
1256
|
|
1250
1257
|
export namespace AllowedValidators {
|
@@ -1276,7 +1283,7 @@ export namespace stake {
|
|
1276
1283
|
}
|
1277
1284
|
|
1278
1285
|
export interface DistributeRewardsEvent {
|
1279
|
-
pool_address:
|
1286
|
+
pool_address: MoveAddressType;
|
1280
1287
|
rewards_amount: bigint;
|
1281
1288
|
}
|
1282
1289
|
|
@@ -1299,7 +1306,7 @@ export namespace stake {
|
|
1299
1306
|
}
|
1300
1307
|
|
1301
1308
|
export interface IncreaseLockupEvent {
|
1302
|
-
pool_address:
|
1309
|
+
pool_address: MoveAddressType;
|
1303
1310
|
old_locked_until_secs: bigint;
|
1304
1311
|
new_locked_until_secs: bigint;
|
1305
1312
|
}
|
@@ -1346,7 +1353,7 @@ export namespace stake {
|
|
1346
1353
|
}
|
1347
1354
|
|
1348
1355
|
export interface JoinValidatorSetEvent {
|
1349
|
-
pool_address:
|
1356
|
+
pool_address: MoveAddressType;
|
1350
1357
|
}
|
1351
1358
|
|
1352
1359
|
export namespace JoinValidatorSetEvent {
|
@@ -1368,7 +1375,7 @@ export namespace stake {
|
|
1368
1375
|
}
|
1369
1376
|
|
1370
1377
|
export interface LeaveValidatorSetEvent {
|
1371
|
-
pool_address:
|
1378
|
+
pool_address: MoveAddressType;
|
1372
1379
|
}
|
1373
1380
|
|
1374
1381
|
export namespace LeaveValidatorSetEvent {
|
@@ -1390,7 +1397,7 @@ export namespace stake {
|
|
1390
1397
|
}
|
1391
1398
|
|
1392
1399
|
export interface OwnerCapability {
|
1393
|
-
pool_address:
|
1400
|
+
pool_address: MoveAddressType;
|
1394
1401
|
}
|
1395
1402
|
|
1396
1403
|
export namespace OwnerCapability {
|
@@ -1406,7 +1413,7 @@ export namespace stake {
|
|
1406
1413
|
}
|
1407
1414
|
|
1408
1415
|
export interface ReactivateStakeEvent {
|
1409
|
-
pool_address:
|
1416
|
+
pool_address: MoveAddressType;
|
1410
1417
|
amount: bigint;
|
1411
1418
|
}
|
1412
1419
|
|
@@ -1429,7 +1436,7 @@ export namespace stake {
|
|
1429
1436
|
}
|
1430
1437
|
|
1431
1438
|
export interface RegisterValidatorCandidateEvent {
|
1432
|
-
pool_address:
|
1439
|
+
pool_address: MoveAddressType;
|
1433
1440
|
}
|
1434
1441
|
|
1435
1442
|
export namespace RegisterValidatorCandidateEvent {
|
@@ -1451,7 +1458,7 @@ export namespace stake {
|
|
1451
1458
|
}
|
1452
1459
|
|
1453
1460
|
export interface RotateConsensusKeyEvent {
|
1454
|
-
pool_address:
|
1461
|
+
pool_address: MoveAddressType;
|
1455
1462
|
old_consensus_pubkey: string;
|
1456
1463
|
new_consensus_pubkey: string;
|
1457
1464
|
}
|
@@ -1475,9 +1482,9 @@ export namespace stake {
|
|
1475
1482
|
}
|
1476
1483
|
|
1477
1484
|
export interface SetOperatorEvent {
|
1478
|
-
pool_address:
|
1479
|
-
old_operator:
|
1480
|
-
new_operator:
|
1485
|
+
pool_address: MoveAddressType;
|
1486
|
+
old_operator: MoveAddressType;
|
1487
|
+
new_operator: MoveAddressType;
|
1481
1488
|
}
|
1482
1489
|
|
1483
1490
|
export namespace SetOperatorEvent {
|
@@ -1504,8 +1511,8 @@ export namespace stake {
|
|
1504
1511
|
pending_active: coin.Coin<aptos_coin.AptosCoin>;
|
1505
1512
|
pending_inactive: coin.Coin<aptos_coin.AptosCoin>;
|
1506
1513
|
locked_until_secs: bigint;
|
1507
|
-
operator_address:
|
1508
|
-
delegated_voter:
|
1514
|
+
operator_address: MoveAddressType;
|
1515
|
+
delegated_voter: MoveAddressType;
|
1509
1516
|
initialize_validator_events: event.EventHandle<stake.RegisterValidatorCandidateEvent>;
|
1510
1517
|
set_operator_events: event.EventHandle<stake.SetOperatorEvent>;
|
1511
1518
|
add_stake_events: event.EventHandle<stake.AddStakeEvent>;
|
@@ -1531,7 +1538,7 @@ export namespace stake {
|
|
1531
1538
|
}
|
1532
1539
|
|
1533
1540
|
export interface UnlockStakeEvent {
|
1534
|
-
pool_address:
|
1541
|
+
pool_address: MoveAddressType;
|
1535
1542
|
amount_unlocked: bigint;
|
1536
1543
|
}
|
1537
1544
|
|
@@ -1554,7 +1561,7 @@ export namespace stake {
|
|
1554
1561
|
}
|
1555
1562
|
|
1556
1563
|
export interface UpdateNetworkAndFullnodeAddressesEvent {
|
1557
|
-
pool_address:
|
1564
|
+
pool_address: MoveAddressType;
|
1558
1565
|
old_network_addresses: string;
|
1559
1566
|
new_network_addresses: string;
|
1560
1567
|
old_fullnode_addresses: string;
|
@@ -1606,7 +1613,7 @@ export namespace stake {
|
|
1606
1613
|
}
|
1607
1614
|
|
1608
1615
|
export interface ValidatorFees {
|
1609
|
-
fees_table: table.Table<
|
1616
|
+
fees_table: table.Table<MoveAddressType, coin.Coin<aptos_coin.AptosCoin>>;
|
1610
1617
|
}
|
1611
1618
|
|
1612
1619
|
export namespace ValidatorFees {
|
@@ -1620,7 +1627,7 @@ export namespace stake {
|
|
1620
1627
|
}
|
1621
1628
|
|
1622
1629
|
export interface ValidatorInfo {
|
1623
|
-
addr:
|
1630
|
+
addr: MoveAddressType;
|
1624
1631
|
voting_power: bigint;
|
1625
1632
|
config: stake.ValidatorConfig;
|
1626
1633
|
}
|
@@ -1677,7 +1684,7 @@ export namespace stake {
|
|
1677
1684
|
}
|
1678
1685
|
|
1679
1686
|
export interface WithdrawStakeEvent {
|
1680
|
-
pool_address:
|
1687
|
+
pool_address: MoveAddressType;
|
1681
1688
|
amount_withdrawn: bigint;
|
1682
1689
|
}
|
1683
1690
|
|
@@ -1710,8 +1717,8 @@ export namespace stake {
|
|
1710
1717
|
}
|
1711
1718
|
|
1712
1719
|
export interface InitializeStakeOwnerPayload
|
1713
|
-
extends TypedFunctionPayload<[bigint,
|
1714
|
-
arguments_decoded: [bigint,
|
1720
|
+
extends TypedFunctionPayload<[bigint, MoveAddressType, MoveAddressType]> {
|
1721
|
+
arguments_decoded: [bigint, MoveAddressType, MoveAddressType];
|
1715
1722
|
type_arguments: [];
|
1716
1723
|
}
|
1717
1724
|
|
@@ -1722,14 +1729,14 @@ export namespace stake {
|
|
1722
1729
|
}
|
1723
1730
|
|
1724
1731
|
export interface JoinValidatorSetPayload
|
1725
|
-
extends TypedFunctionPayload<[
|
1726
|
-
arguments_decoded: [
|
1732
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
1733
|
+
arguments_decoded: [MoveAddressType];
|
1727
1734
|
type_arguments: [];
|
1728
1735
|
}
|
1729
1736
|
|
1730
1737
|
export interface LeaveValidatorSetPayload
|
1731
|
-
extends TypedFunctionPayload<[
|
1732
|
-
arguments_decoded: [
|
1738
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
1739
|
+
arguments_decoded: [MoveAddressType];
|
1733
1740
|
type_arguments: [];
|
1734
1741
|
}
|
1735
1742
|
|
@@ -1740,19 +1747,20 @@ export namespace stake {
|
|
1740
1747
|
}
|
1741
1748
|
|
1742
1749
|
export interface RotateConsensusKeyPayload
|
1743
|
-
extends TypedFunctionPayload<[
|
1744
|
-
arguments_decoded: [
|
1750
|
+
extends TypedFunctionPayload<[MoveAddressType, string, string]> {
|
1751
|
+
arguments_decoded: [MoveAddressType, string, string];
|
1745
1752
|
type_arguments: [];
|
1746
1753
|
}
|
1747
1754
|
|
1748
1755
|
export interface SetDelegatedVoterPayload
|
1749
|
-
extends TypedFunctionPayload<[
|
1750
|
-
arguments_decoded: [
|
1756
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
1757
|
+
arguments_decoded: [MoveAddressType];
|
1751
1758
|
type_arguments: [];
|
1752
1759
|
}
|
1753
1760
|
|
1754
|
-
export interface SetOperatorPayload
|
1755
|
-
|
1761
|
+
export interface SetOperatorPayload
|
1762
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
1763
|
+
arguments_decoded: [MoveAddressType];
|
1756
1764
|
type_arguments: [];
|
1757
1765
|
}
|
1758
1766
|
|
@@ -1762,8 +1770,8 @@ export namespace stake {
|
|
1762
1770
|
}
|
1763
1771
|
|
1764
1772
|
export interface UpdateNetworkAndFullnodeAddressesPayload
|
1765
|
-
extends TypedFunctionPayload<[
|
1766
|
-
arguments_decoded: [
|
1773
|
+
extends TypedFunctionPayload<[MoveAddressType, string, string]> {
|
1774
|
+
arguments_decoded: [MoveAddressType, string, string];
|
1767
1775
|
type_arguments: [];
|
1768
1776
|
}
|
1769
1777
|
|
@@ -1818,7 +1826,7 @@ export namespace table {
|
|
1818
1826
|
}
|
1819
1827
|
|
1820
1828
|
export interface Table<T0, T1> {
|
1821
|
-
handle:
|
1829
|
+
handle: MoveAddressType;
|
1822
1830
|
}
|
1823
1831
|
|
1824
1832
|
export namespace Table {
|
@@ -1981,7 +1989,7 @@ export class object_ extends AptosBaseProcessor {
|
|
1981
1989
|
|
1982
1990
|
export namespace object_ {
|
1983
1991
|
export interface ConstructorRef {
|
1984
|
-
self:
|
1992
|
+
self: MoveAddressType;
|
1985
1993
|
can_delete: Boolean;
|
1986
1994
|
}
|
1987
1995
|
|
@@ -1996,7 +2004,7 @@ export namespace object_ {
|
|
1996
2004
|
}
|
1997
2005
|
|
1998
2006
|
export interface DeleteRef {
|
1999
|
-
self:
|
2007
|
+
self: MoveAddressType;
|
2000
2008
|
}
|
2001
2009
|
|
2002
2010
|
export namespace DeleteRef {
|
@@ -2015,7 +2023,7 @@ export namespace object_ {
|
|
2015
2023
|
}
|
2016
2024
|
|
2017
2025
|
export interface DeriveRef {
|
2018
|
-
self:
|
2026
|
+
self: MoveAddressType;
|
2019
2027
|
}
|
2020
2028
|
|
2021
2029
|
export namespace DeriveRef {
|
@@ -2034,7 +2042,7 @@ export namespace object_ {
|
|
2034
2042
|
}
|
2035
2043
|
|
2036
2044
|
export interface ExtendRef {
|
2037
|
-
self:
|
2045
|
+
self: MoveAddressType;
|
2038
2046
|
}
|
2039
2047
|
|
2040
2048
|
export namespace ExtendRef {
|
@@ -2053,8 +2061,8 @@ export namespace object_ {
|
|
2053
2061
|
}
|
2054
2062
|
|
2055
2063
|
export interface LinearTransferRef {
|
2056
|
-
self:
|
2057
|
-
owner:
|
2064
|
+
self: MoveAddressType;
|
2065
|
+
owner: MoveAddressType;
|
2058
2066
|
}
|
2059
2067
|
|
2060
2068
|
export namespace LinearTransferRef {
|
@@ -2070,7 +2078,7 @@ export namespace object_ {
|
|
2070
2078
|
}
|
2071
2079
|
|
2072
2080
|
export interface Object<T0> {
|
2073
|
-
inner:
|
2081
|
+
inner: MoveAddressType;
|
2074
2082
|
}
|
2075
2083
|
|
2076
2084
|
export namespace Object {
|
@@ -2092,7 +2100,7 @@ export namespace object_ {
|
|
2092
2100
|
|
2093
2101
|
export interface ObjectCore {
|
2094
2102
|
guid_creation_num: bigint;
|
2095
|
-
owner:
|
2103
|
+
owner: MoveAddressType;
|
2096
2104
|
allow_ungated_transfer: Boolean;
|
2097
2105
|
transfer_events: event.EventHandle<object_.TransferEvent>;
|
2098
2106
|
}
|
@@ -2122,7 +2130,7 @@ export namespace object_ {
|
|
2122
2130
|
}
|
2123
2131
|
|
2124
2132
|
export interface TombStone {
|
2125
|
-
original_owner:
|
2133
|
+
original_owner: MoveAddressType;
|
2126
2134
|
}
|
2127
2135
|
|
2128
2136
|
export namespace TombStone {
|
@@ -2136,9 +2144,9 @@ export namespace object_ {
|
|
2136
2144
|
}
|
2137
2145
|
|
2138
2146
|
export interface TransferEvent {
|
2139
|
-
object:
|
2140
|
-
from:
|
2141
|
-
to:
|
2147
|
+
object: MoveAddressType;
|
2148
|
+
from: MoveAddressType;
|
2149
|
+
to: MoveAddressType;
|
2142
2150
|
}
|
2143
2151
|
|
2144
2152
|
export namespace TransferEvent {
|
@@ -2158,7 +2166,7 @@ export namespace object_ {
|
|
2158
2166
|
}
|
2159
2167
|
|
2160
2168
|
export interface TransferRef {
|
2161
|
-
self:
|
2169
|
+
self: MoveAddressType;
|
2162
2170
|
}
|
2163
2171
|
|
2164
2172
|
export namespace TransferRef {
|
@@ -2183,14 +2191,14 @@ export namespace object_ {
|
|
2183
2191
|
}
|
2184
2192
|
|
2185
2193
|
export interface TransferPayload<T0 = any>
|
2186
|
-
extends TypedFunctionPayload<[object_.Object<T0>,
|
2187
|
-
arguments_decoded: [object_.Object<T0>,
|
2194
|
+
extends TypedFunctionPayload<[object_.Object<T0>, MoveAddressType]> {
|
2195
|
+
arguments_decoded: [object_.Object<T0>, MoveAddressType];
|
2188
2196
|
type_arguments: [string];
|
2189
2197
|
}
|
2190
2198
|
|
2191
2199
|
export interface TransferCallPayload
|
2192
|
-
extends TypedFunctionPayload<[
|
2193
|
-
arguments_decoded: [
|
2200
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
2201
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
2194
2202
|
type_arguments: [];
|
2195
2203
|
}
|
2196
2204
|
|
@@ -2381,7 +2389,7 @@ export namespace voting {
|
|
2381
2389
|
}
|
2382
2390
|
|
2383
2391
|
export interface Proposal<T0> {
|
2384
|
-
proposer:
|
2392
|
+
proposer: MoveAddressType;
|
2385
2393
|
execution_content: option.Option<T0>;
|
2386
2394
|
metadata: simple_map.SimpleMap<string, string>;
|
2387
2395
|
creation_time_secs: bigint;
|
@@ -2408,7 +2416,7 @@ export namespace voting {
|
|
2408
2416
|
}
|
2409
2417
|
|
2410
2418
|
export interface RegisterForumEvent {
|
2411
|
-
hosting_account:
|
2419
|
+
hosting_account: MoveAddressType;
|
2412
2420
|
proposal_type_info: type_info.TypeInfo;
|
2413
2421
|
}
|
2414
2422
|
|
@@ -2738,7 +2746,7 @@ export namespace account {
|
|
2738
2746
|
}
|
2739
2747
|
|
2740
2748
|
export interface CapabilityOffer<T0> {
|
2741
|
-
for: option.Option<
|
2749
|
+
for: option.Option<MoveAddressType>;
|
2742
2750
|
}
|
2743
2751
|
|
2744
2752
|
export namespace CapabilityOffer {
|
@@ -2801,7 +2809,7 @@ export namespace account {
|
|
2801
2809
|
}
|
2802
2810
|
|
2803
2811
|
export interface OriginatingAddress {
|
2804
|
-
address_map: table.Table<
|
2812
|
+
address_map: table.Table<MoveAddressType, MoveAddressType>;
|
2805
2813
|
}
|
2806
2814
|
|
2807
2815
|
export namespace OriginatingAddress {
|
@@ -2817,7 +2825,7 @@ export namespace account {
|
|
2817
2825
|
}
|
2818
2826
|
|
2819
2827
|
export interface RotationCapability {
|
2820
|
-
account:
|
2828
|
+
account: MoveAddressType;
|
2821
2829
|
}
|
2822
2830
|
|
2823
2831
|
export namespace RotationCapability {
|
@@ -2840,7 +2848,7 @@ export namespace account {
|
|
2840
2848
|
|
2841
2849
|
export interface RotationCapabilityOfferProofChallenge {
|
2842
2850
|
sequence_number: bigint;
|
2843
|
-
recipient_address:
|
2851
|
+
recipient_address: MoveAddressType;
|
2844
2852
|
}
|
2845
2853
|
|
2846
2854
|
export namespace RotationCapabilityOfferProofChallenge {
|
@@ -2859,8 +2867,8 @@ export namespace account {
|
|
2859
2867
|
export interface RotationCapabilityOfferProofChallengeV2 {
|
2860
2868
|
chain_id: number;
|
2861
2869
|
sequence_number: bigint;
|
2862
|
-
source_address:
|
2863
|
-
recipient_address:
|
2870
|
+
source_address: MoveAddressType;
|
2871
|
+
recipient_address: MoveAddressType;
|
2864
2872
|
}
|
2865
2873
|
|
2866
2874
|
export namespace RotationCapabilityOfferProofChallengeV2 {
|
@@ -2878,8 +2886,8 @@ export namespace account {
|
|
2878
2886
|
|
2879
2887
|
export interface RotationProofChallenge {
|
2880
2888
|
sequence_number: bigint;
|
2881
|
-
originator:
|
2882
|
-
current_auth_key:
|
2889
|
+
originator: MoveAddressType;
|
2890
|
+
current_auth_key: MoveAddressType;
|
2883
2891
|
new_public_key: string;
|
2884
2892
|
}
|
2885
2893
|
|
@@ -2896,7 +2904,7 @@ export namespace account {
|
|
2896
2904
|
}
|
2897
2905
|
|
2898
2906
|
export interface SignerCapability {
|
2899
|
-
account:
|
2907
|
+
account: MoveAddressType;
|
2900
2908
|
}
|
2901
2909
|
|
2902
2910
|
export namespace SignerCapability {
|
@@ -2919,7 +2927,7 @@ export namespace account {
|
|
2919
2927
|
|
2920
2928
|
export interface SignerCapabilityOfferProofChallenge {
|
2921
2929
|
sequence_number: bigint;
|
2922
|
-
recipient_address:
|
2930
|
+
recipient_address: MoveAddressType;
|
2923
2931
|
}
|
2924
2932
|
|
2925
2933
|
export namespace SignerCapabilityOfferProofChallenge {
|
@@ -2937,8 +2945,8 @@ export namespace account {
|
|
2937
2945
|
|
2938
2946
|
export interface SignerCapabilityOfferProofChallengeV2 {
|
2939
2947
|
sequence_number: bigint;
|
2940
|
-
source_address:
|
2941
|
-
recipient_address:
|
2948
|
+
source_address: MoveAddressType;
|
2949
|
+
recipient_address: MoveAddressType;
|
2942
2950
|
}
|
2943
2951
|
|
2944
2952
|
export namespace SignerCapabilityOfferProofChallengeV2 {
|
@@ -2955,14 +2963,14 @@ export namespace account {
|
|
2955
2963
|
}
|
2956
2964
|
|
2957
2965
|
export interface OfferRotationCapabilityPayload
|
2958
|
-
extends TypedFunctionPayload<[string, number, string,
|
2959
|
-
arguments_decoded: [string, number, string,
|
2966
|
+
extends TypedFunctionPayload<[string, number, string, MoveAddressType]> {
|
2967
|
+
arguments_decoded: [string, number, string, MoveAddressType];
|
2960
2968
|
type_arguments: [];
|
2961
2969
|
}
|
2962
2970
|
|
2963
2971
|
export interface OfferSignerCapabilityPayload
|
2964
|
-
extends TypedFunctionPayload<[string, number, string,
|
2965
|
-
arguments_decoded: [string, number, string,
|
2972
|
+
extends TypedFunctionPayload<[string, number, string, MoveAddressType]> {
|
2973
|
+
arguments_decoded: [string, number, string, MoveAddressType];
|
2966
2974
|
type_arguments: [];
|
2967
2975
|
}
|
2968
2976
|
|
@@ -2979,14 +2987,14 @@ export namespace account {
|
|
2979
2987
|
}
|
2980
2988
|
|
2981
2989
|
export interface RevokeRotationCapabilityPayload
|
2982
|
-
extends TypedFunctionPayload<[
|
2983
|
-
arguments_decoded: [
|
2990
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
2991
|
+
arguments_decoded: [MoveAddressType];
|
2984
2992
|
type_arguments: [];
|
2985
2993
|
}
|
2986
2994
|
|
2987
2995
|
export interface RevokeSignerCapabilityPayload
|
2988
|
-
extends TypedFunctionPayload<[
|
2989
|
-
arguments_decoded: [
|
2996
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
2997
|
+
arguments_decoded: [MoveAddressType];
|
2990
2998
|
type_arguments: [];
|
2991
2999
|
}
|
2992
3000
|
|
@@ -2999,8 +3007,8 @@ export namespace account {
|
|
2999
3007
|
}
|
3000
3008
|
|
3001
3009
|
export interface RotateAuthenticationKeyWithRotationCapabilityPayload
|
3002
|
-
extends TypedFunctionPayload<[
|
3003
|
-
arguments_decoded: [
|
3010
|
+
extends TypedFunctionPayload<[MoveAddressType, number, string, string]> {
|
3011
|
+
arguments_decoded: [MoveAddressType, number, string, string];
|
3004
3012
|
type_arguments: [];
|
3005
3013
|
}
|
3006
3014
|
}
|
@@ -3143,7 +3151,7 @@ export namespace ed25519 {
|
|
3143
3151
|
|
3144
3152
|
export namespace genesis {
|
3145
3153
|
export interface AccountMap {
|
3146
|
-
account_address:
|
3154
|
+
account_address: MoveAddressType;
|
3147
3155
|
balance: bigint;
|
3148
3156
|
}
|
3149
3157
|
|
@@ -3158,11 +3166,11 @@ export namespace genesis {
|
|
3158
3166
|
}
|
3159
3167
|
|
3160
3168
|
export interface EmployeeAccountMap {
|
3161
|
-
accounts:
|
3169
|
+
accounts: MoveAddressType[];
|
3162
3170
|
validator: genesis.ValidatorConfigurationWithCommission;
|
3163
3171
|
vesting_schedule_numerator: bigint[];
|
3164
3172
|
vesting_schedule_denominator: bigint;
|
3165
|
-
beneficiary_resetter:
|
3173
|
+
beneficiary_resetter: MoveAddressType;
|
3166
3174
|
}
|
3167
3175
|
|
3168
3176
|
export namespace EmployeeAccountMap {
|
@@ -3178,9 +3186,9 @@ export namespace genesis {
|
|
3178
3186
|
}
|
3179
3187
|
|
3180
3188
|
export interface ValidatorConfiguration {
|
3181
|
-
owner_address:
|
3182
|
-
operator_address:
|
3183
|
-
voter_address:
|
3189
|
+
owner_address: MoveAddressType;
|
3190
|
+
operator_address: MoveAddressType;
|
3191
|
+
voter_address: MoveAddressType;
|
3184
3192
|
stake_amount: bigint;
|
3185
3193
|
consensus_pubkey: string;
|
3186
3194
|
proof_of_possession: string;
|
@@ -3712,7 +3720,7 @@ export class vesting extends AptosBaseProcessor {
|
|
3712
3720
|
|
3713
3721
|
export namespace vesting {
|
3714
3722
|
export interface AdminStore {
|
3715
|
-
vesting_contracts:
|
3723
|
+
vesting_contracts: MoveAddressType[];
|
3716
3724
|
nonce: bigint;
|
3717
3725
|
create_events: event.EventHandle<vesting.CreateVestingContractEvent>;
|
3718
3726
|
}
|
@@ -3728,8 +3736,8 @@ export namespace vesting {
|
|
3728
3736
|
}
|
3729
3737
|
|
3730
3738
|
export interface AdminWithdrawEvent {
|
3731
|
-
admin:
|
3732
|
-
vesting_contract_address:
|
3739
|
+
admin: MoveAddressType;
|
3740
|
+
vesting_contract_address: MoveAddressType;
|
3733
3741
|
amount: bigint;
|
3734
3742
|
}
|
3735
3743
|
|
@@ -3752,12 +3760,12 @@ export namespace vesting {
|
|
3752
3760
|
}
|
3753
3761
|
|
3754
3762
|
export interface CreateVestingContractEvent {
|
3755
|
-
operator:
|
3756
|
-
voter:
|
3763
|
+
operator: MoveAddressType;
|
3764
|
+
voter: MoveAddressType;
|
3757
3765
|
grant_amount: bigint;
|
3758
|
-
withdrawal_address:
|
3759
|
-
vesting_contract_address:
|
3760
|
-
staking_pool_address:
|
3766
|
+
withdrawal_address: MoveAddressType;
|
3767
|
+
vesting_contract_address: MoveAddressType;
|
3768
|
+
staking_pool_address: MoveAddressType;
|
3761
3769
|
commission_percentage: bigint;
|
3762
3770
|
}
|
3763
3771
|
|
@@ -3780,8 +3788,8 @@ export namespace vesting {
|
|
3780
3788
|
}
|
3781
3789
|
|
3782
3790
|
export interface DistributeEvent {
|
3783
|
-
admin:
|
3784
|
-
vesting_contract_address:
|
3791
|
+
admin: MoveAddressType;
|
3792
|
+
vesting_contract_address: MoveAddressType;
|
3785
3793
|
amount: bigint;
|
3786
3794
|
}
|
3787
3795
|
|
@@ -3804,9 +3812,9 @@ export namespace vesting {
|
|
3804
3812
|
}
|
3805
3813
|
|
3806
3814
|
export interface ResetLockupEvent {
|
3807
|
-
admin:
|
3808
|
-
vesting_contract_address:
|
3809
|
-
staking_pool_address:
|
3815
|
+
admin: MoveAddressType;
|
3816
|
+
vesting_contract_address: MoveAddressType;
|
3817
|
+
staking_pool_address: MoveAddressType;
|
3810
3818
|
new_lockup_expiration_secs: bigint;
|
3811
3819
|
}
|
3812
3820
|
|
@@ -3829,11 +3837,11 @@ export namespace vesting {
|
|
3829
3837
|
}
|
3830
3838
|
|
3831
3839
|
export interface SetBeneficiaryEvent {
|
3832
|
-
admin:
|
3833
|
-
vesting_contract_address:
|
3834
|
-
shareholder:
|
3835
|
-
old_beneficiary:
|
3836
|
-
new_beneficiary:
|
3840
|
+
admin: MoveAddressType;
|
3841
|
+
vesting_contract_address: MoveAddressType;
|
3842
|
+
shareholder: MoveAddressType;
|
3843
|
+
old_beneficiary: MoveAddressType;
|
3844
|
+
new_beneficiary: MoveAddressType;
|
3837
3845
|
}
|
3838
3846
|
|
3839
3847
|
export namespace SetBeneficiaryEvent {
|
@@ -3855,9 +3863,9 @@ export namespace vesting {
|
|
3855
3863
|
}
|
3856
3864
|
|
3857
3865
|
export interface StakingInfo {
|
3858
|
-
pool_address:
|
3859
|
-
operator:
|
3860
|
-
voter:
|
3866
|
+
pool_address: MoveAddressType;
|
3867
|
+
operator: MoveAddressType;
|
3868
|
+
voter: MoveAddressType;
|
3861
3869
|
commission_percentage: bigint;
|
3862
3870
|
}
|
3863
3871
|
|
@@ -3872,8 +3880,8 @@ export namespace vesting {
|
|
3872
3880
|
}
|
3873
3881
|
|
3874
3882
|
export interface TerminateEvent {
|
3875
|
-
admin:
|
3876
|
-
vesting_contract_address:
|
3883
|
+
admin: MoveAddressType;
|
3884
|
+
vesting_contract_address: MoveAddressType;
|
3877
3885
|
}
|
3878
3886
|
|
3879
3887
|
export namespace TerminateEvent {
|
@@ -3893,9 +3901,9 @@ export namespace vesting {
|
|
3893
3901
|
}
|
3894
3902
|
|
3895
3903
|
export interface UnlockRewardsEvent {
|
3896
|
-
admin:
|
3897
|
-
vesting_contract_address:
|
3898
|
-
staking_pool_address:
|
3904
|
+
admin: MoveAddressType;
|
3905
|
+
vesting_contract_address: MoveAddressType;
|
3906
|
+
staking_pool_address: MoveAddressType;
|
3899
3907
|
amount: bigint;
|
3900
3908
|
}
|
3901
3909
|
|
@@ -3918,11 +3926,11 @@ export namespace vesting {
|
|
3918
3926
|
}
|
3919
3927
|
|
3920
3928
|
export interface UpdateOperatorEvent {
|
3921
|
-
admin:
|
3922
|
-
vesting_contract_address:
|
3923
|
-
staking_pool_address:
|
3924
|
-
old_operator:
|
3925
|
-
new_operator:
|
3929
|
+
admin: MoveAddressType;
|
3930
|
+
vesting_contract_address: MoveAddressType;
|
3931
|
+
staking_pool_address: MoveAddressType;
|
3932
|
+
old_operator: MoveAddressType;
|
3933
|
+
new_operator: MoveAddressType;
|
3926
3934
|
commission_percentage: bigint;
|
3927
3935
|
}
|
3928
3936
|
|
@@ -3945,11 +3953,11 @@ export namespace vesting {
|
|
3945
3953
|
}
|
3946
3954
|
|
3947
3955
|
export interface UpdateVoterEvent {
|
3948
|
-
admin:
|
3949
|
-
vesting_contract_address:
|
3950
|
-
staking_pool_address:
|
3951
|
-
old_voter:
|
3952
|
-
new_voter:
|
3956
|
+
admin: MoveAddressType;
|
3957
|
+
vesting_contract_address: MoveAddressType;
|
3958
|
+
staking_pool_address: MoveAddressType;
|
3959
|
+
old_voter: MoveAddressType;
|
3960
|
+
new_voter: MoveAddressType;
|
3953
3961
|
}
|
3954
3962
|
|
3955
3963
|
export namespace UpdateVoterEvent {
|
@@ -3971,9 +3979,9 @@ export namespace vesting {
|
|
3971
3979
|
}
|
3972
3980
|
|
3973
3981
|
export interface VestEvent {
|
3974
|
-
admin:
|
3975
|
-
vesting_contract_address:
|
3976
|
-
staking_pool_address:
|
3982
|
+
admin: MoveAddressType;
|
3983
|
+
vesting_contract_address: MoveAddressType;
|
3984
|
+
staking_pool_address: MoveAddressType;
|
3977
3985
|
period_vested: bigint;
|
3978
3986
|
amount: bigint;
|
3979
3987
|
}
|
@@ -3994,7 +4002,7 @@ export namespace vesting {
|
|
3994
4002
|
}
|
3995
4003
|
|
3996
4004
|
export interface VestingAccountManagement {
|
3997
|
-
roles: simple_map.SimpleMap<string,
|
4005
|
+
roles: simple_map.SimpleMap<string, MoveAddressType>;
|
3998
4006
|
}
|
3999
4007
|
|
4000
4008
|
export namespace VestingAccountManagement {
|
@@ -4011,11 +4019,11 @@ export namespace vesting {
|
|
4011
4019
|
|
4012
4020
|
export interface VestingContract {
|
4013
4021
|
state: bigint;
|
4014
|
-
admin:
|
4022
|
+
admin: MoveAddressType;
|
4015
4023
|
grant_pool: pool_u64.Pool;
|
4016
|
-
beneficiaries: simple_map.SimpleMap<
|
4024
|
+
beneficiaries: simple_map.SimpleMap<MoveAddressType, MoveAddressType>;
|
4017
4025
|
vesting_schedule: vesting.VestingSchedule;
|
4018
|
-
withdrawal_address:
|
4026
|
+
withdrawal_address: MoveAddressType;
|
4019
4027
|
staking: vesting.StakingInfo;
|
4020
4028
|
remaining_grant: bigint;
|
4021
4029
|
signer_cap: account.SignerCapability;
|
@@ -4068,100 +4076,105 @@ export namespace vesting {
|
|
4068
4076
|
}
|
4069
4077
|
|
4070
4078
|
export interface AdminWithdrawPayload
|
4071
|
-
extends TypedFunctionPayload<[
|
4072
|
-
arguments_decoded: [
|
4079
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
4080
|
+
arguments_decoded: [MoveAddressType];
|
4073
4081
|
type_arguments: [];
|
4074
4082
|
}
|
4075
4083
|
|
4076
|
-
export interface DistributePayload
|
4077
|
-
|
4084
|
+
export interface DistributePayload
|
4085
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
4086
|
+
arguments_decoded: [MoveAddressType];
|
4078
4087
|
type_arguments: [];
|
4079
4088
|
}
|
4080
4089
|
|
4081
4090
|
export interface DistributeManyPayload
|
4082
|
-
extends TypedFunctionPayload<[
|
4083
|
-
arguments_decoded: [
|
4091
|
+
extends TypedFunctionPayload<[MoveAddressType[]]> {
|
4092
|
+
arguments_decoded: [MoveAddressType[]];
|
4084
4093
|
type_arguments: [];
|
4085
4094
|
}
|
4086
4095
|
|
4087
4096
|
export interface ResetBeneficiaryPayload
|
4088
|
-
extends TypedFunctionPayload<[
|
4089
|
-
arguments_decoded: [
|
4097
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
4098
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
4090
4099
|
type_arguments: [];
|
4091
4100
|
}
|
4092
4101
|
|
4093
|
-
export interface ResetLockupPayload
|
4094
|
-
|
4102
|
+
export interface ResetLockupPayload
|
4103
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
4104
|
+
arguments_decoded: [MoveAddressType];
|
4095
4105
|
type_arguments: [];
|
4096
4106
|
}
|
4097
4107
|
|
4098
4108
|
export interface SetBeneficiaryPayload
|
4099
|
-
extends TypedFunctionPayload<
|
4100
|
-
|
4109
|
+
extends TypedFunctionPayload<
|
4110
|
+
[MoveAddressType, MoveAddressType, MoveAddressType]
|
4111
|
+
> {
|
4112
|
+
arguments_decoded: [MoveAddressType, MoveAddressType, MoveAddressType];
|
4101
4113
|
type_arguments: [];
|
4102
4114
|
}
|
4103
4115
|
|
4104
4116
|
export interface SetBeneficiaryResetterPayload
|
4105
|
-
extends TypedFunctionPayload<[
|
4106
|
-
arguments_decoded: [
|
4117
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
4118
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
4107
4119
|
type_arguments: [];
|
4108
4120
|
}
|
4109
4121
|
|
4110
4122
|
export interface SetManagementRolePayload
|
4111
|
-
extends TypedFunctionPayload<[
|
4112
|
-
arguments_decoded: [
|
4123
|
+
extends TypedFunctionPayload<[MoveAddressType, string, MoveAddressType]> {
|
4124
|
+
arguments_decoded: [MoveAddressType, string, MoveAddressType];
|
4113
4125
|
type_arguments: [];
|
4114
4126
|
}
|
4115
4127
|
|
4116
4128
|
export interface TerminateVestingContractPayload
|
4117
|
-
extends TypedFunctionPayload<[
|
4118
|
-
arguments_decoded: [
|
4129
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
4130
|
+
arguments_decoded: [MoveAddressType];
|
4119
4131
|
type_arguments: [];
|
4120
4132
|
}
|
4121
4133
|
|
4122
4134
|
export interface UnlockRewardsPayload
|
4123
|
-
extends TypedFunctionPayload<[
|
4124
|
-
arguments_decoded: [
|
4135
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
4136
|
+
arguments_decoded: [MoveAddressType];
|
4125
4137
|
type_arguments: [];
|
4126
4138
|
}
|
4127
4139
|
|
4128
4140
|
export interface UnlockRewardsManyPayload
|
4129
|
-
extends TypedFunctionPayload<[
|
4130
|
-
arguments_decoded: [
|
4141
|
+
extends TypedFunctionPayload<[MoveAddressType[]]> {
|
4142
|
+
arguments_decoded: [MoveAddressType[]];
|
4131
4143
|
type_arguments: [];
|
4132
4144
|
}
|
4133
4145
|
|
4134
4146
|
export interface UpdateCommissionPercentagePayload
|
4135
|
-
extends TypedFunctionPayload<[
|
4136
|
-
arguments_decoded: [
|
4147
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
4148
|
+
arguments_decoded: [MoveAddressType, bigint];
|
4137
4149
|
type_arguments: [];
|
4138
4150
|
}
|
4139
4151
|
|
4140
4152
|
export interface UpdateOperatorPayload
|
4141
|
-
extends TypedFunctionPayload<[
|
4142
|
-
arguments_decoded: [
|
4153
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType, bigint]> {
|
4154
|
+
arguments_decoded: [MoveAddressType, MoveAddressType, bigint];
|
4143
4155
|
type_arguments: [];
|
4144
4156
|
}
|
4145
4157
|
|
4146
4158
|
export interface UpdateOperatorWithSameCommissionPayload
|
4147
|
-
extends TypedFunctionPayload<[
|
4148
|
-
arguments_decoded: [
|
4159
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
4160
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
4149
4161
|
type_arguments: [];
|
4150
4162
|
}
|
4151
4163
|
|
4152
4164
|
export interface UpdateVoterPayload
|
4153
|
-
extends TypedFunctionPayload<[
|
4154
|
-
arguments_decoded: [
|
4165
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
4166
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
4155
4167
|
type_arguments: [];
|
4156
4168
|
}
|
4157
4169
|
|
4158
|
-
export interface VestPayload extends TypedFunctionPayload<[
|
4159
|
-
arguments_decoded: [
|
4170
|
+
export interface VestPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
4171
|
+
arguments_decoded: [MoveAddressType];
|
4160
4172
|
type_arguments: [];
|
4161
4173
|
}
|
4162
4174
|
|
4163
|
-
export interface VestManyPayload
|
4164
|
-
|
4175
|
+
export interface VestManyPayload
|
4176
|
+
extends TypedFunctionPayload<[MoveAddressType[]]> {
|
4177
|
+
arguments_decoded: [MoveAddressType[]];
|
4165
4178
|
type_arguments: [];
|
4166
4179
|
}
|
4167
4180
|
}
|
@@ -4416,8 +4429,8 @@ export namespace pool_u64 {
|
|
4416
4429
|
shareholders_limit: bigint;
|
4417
4430
|
total_coins: bigint;
|
4418
4431
|
total_shares: bigint;
|
4419
|
-
shares: simple_map.SimpleMap<
|
4420
|
-
shareholders:
|
4432
|
+
shares: simple_map.SimpleMap<MoveAddressType, bigint>;
|
4433
|
+
shareholders: MoveAddressType[];
|
4421
4434
|
scaling_factor: bigint;
|
4422
4435
|
}
|
4423
4436
|
|
@@ -4555,7 +4568,7 @@ export class type_info extends AptosBaseProcessor {
|
|
4555
4568
|
|
4556
4569
|
export namespace type_info {
|
4557
4570
|
export interface TypeInfo {
|
4558
|
-
account_address:
|
4571
|
+
account_address: MoveAddressType;
|
4559
4572
|
module_name: string;
|
4560
4573
|
struct_name: string;
|
4561
4574
|
}
|
@@ -4578,8 +4591,8 @@ export namespace type_info {
|
|
4578
4591
|
|
4579
4592
|
export namespace aggregator {
|
4580
4593
|
export interface Aggregator {
|
4581
|
-
handle:
|
4582
|
-
key:
|
4594
|
+
handle: MoveAddressType;
|
4595
|
+
key: MoveAddressType;
|
4583
4596
|
limit: bigint;
|
4584
4597
|
}
|
4585
4598
|
|
@@ -4678,7 +4691,7 @@ export namespace aptos_coin {
|
|
4678
4691
|
}
|
4679
4692
|
|
4680
4693
|
export interface DelegatedMintCapability {
|
4681
|
-
to:
|
4694
|
+
to: MoveAddressType;
|
4682
4695
|
}
|
4683
4696
|
|
4684
4697
|
export namespace DelegatedMintCapability {
|
@@ -4727,13 +4740,14 @@ export namespace aptos_coin {
|
|
4727
4740
|
}
|
4728
4741
|
|
4729
4742
|
export interface DelegateMintCapabilityPayload
|
4730
|
-
extends TypedFunctionPayload<[
|
4731
|
-
arguments_decoded: [
|
4743
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
4744
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
4732
4745
|
type_arguments: [];
|
4733
4746
|
}
|
4734
4747
|
|
4735
|
-
export interface MintPayload
|
4736
|
-
|
4748
|
+
export interface MintPayload
|
4749
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
4750
|
+
arguments_decoded: [MoveAddressType, bigint];
|
4737
4751
|
type_arguments: [];
|
4738
4752
|
}
|
4739
4753
|
}
|
@@ -4806,7 +4820,7 @@ export namespace bit_vector {
|
|
4806
4820
|
|
4807
4821
|
export namespace capability {
|
4808
4822
|
export interface Cap<T0> {
|
4809
|
-
root:
|
4823
|
+
root: MoveAddressType;
|
4810
4824
|
}
|
4811
4825
|
|
4812
4826
|
export namespace Cap {
|
@@ -4822,7 +4836,7 @@ export namespace capability {
|
|
4822
4836
|
}
|
4823
4837
|
|
4824
4838
|
export interface CapDelegateState<T0> {
|
4825
|
-
root:
|
4839
|
+
root: MoveAddressType;
|
4826
4840
|
}
|
4827
4841
|
|
4828
4842
|
export namespace CapDelegateState {
|
@@ -4840,7 +4854,7 @@ export namespace capability {
|
|
4840
4854
|
}
|
4841
4855
|
|
4842
4856
|
export interface CapState<T0> {
|
4843
|
-
delegates:
|
4857
|
+
delegates: MoveAddressType[];
|
4844
4858
|
}
|
4845
4859
|
|
4846
4860
|
export namespace CapState {
|
@@ -4856,7 +4870,7 @@ export namespace capability {
|
|
4856
4870
|
}
|
4857
4871
|
|
4858
4872
|
export interface LinearCap<T0> {
|
4859
|
-
root:
|
4873
|
+
root: MoveAddressType;
|
4860
4874
|
}
|
4861
4875
|
|
4862
4876
|
export namespace LinearCap {
|
@@ -5436,8 +5450,8 @@ export namespace managed_coin {
|
|
5436
5450
|
}
|
5437
5451
|
|
5438
5452
|
export interface MintPayload<T0 = any>
|
5439
|
-
extends TypedFunctionPayload<[
|
5440
|
-
arguments_decoded: [
|
5453
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
5454
|
+
arguments_decoded: [MoveAddressType, bigint];
|
5441
5455
|
type_arguments: [string];
|
5442
5456
|
}
|
5443
5457
|
|
@@ -5898,20 +5912,20 @@ export namespace aptos_account {
|
|
5898
5912
|
}
|
5899
5913
|
|
5900
5914
|
export interface BatchTransferPayload
|
5901
|
-
extends TypedFunctionPayload<[
|
5902
|
-
arguments_decoded: [
|
5915
|
+
extends TypedFunctionPayload<[MoveAddressType[], bigint[]]> {
|
5916
|
+
arguments_decoded: [MoveAddressType[], bigint[]];
|
5903
5917
|
type_arguments: [];
|
5904
5918
|
}
|
5905
5919
|
|
5906
5920
|
export interface BatchTransferCoinsPayload<T0 = any>
|
5907
|
-
extends TypedFunctionPayload<[
|
5908
|
-
arguments_decoded: [
|
5921
|
+
extends TypedFunctionPayload<[MoveAddressType[], bigint[]]> {
|
5922
|
+
arguments_decoded: [MoveAddressType[], bigint[]];
|
5909
5923
|
type_arguments: [string];
|
5910
5924
|
}
|
5911
5925
|
|
5912
5926
|
export interface CreateAccountPayload
|
5913
|
-
extends TypedFunctionPayload<[
|
5914
|
-
arguments_decoded: [
|
5927
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
5928
|
+
arguments_decoded: [MoveAddressType];
|
5915
5929
|
type_arguments: [];
|
5916
5930
|
}
|
5917
5931
|
|
@@ -5922,14 +5936,14 @@ export namespace aptos_account {
|
|
5922
5936
|
}
|
5923
5937
|
|
5924
5938
|
export interface TransferPayload
|
5925
|
-
extends TypedFunctionPayload<[
|
5926
|
-
arguments_decoded: [
|
5939
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
5940
|
+
arguments_decoded: [MoveAddressType, bigint];
|
5927
5941
|
type_arguments: [];
|
5928
5942
|
}
|
5929
5943
|
|
5930
5944
|
export interface TransferCoinsPayload<T0 = any>
|
5931
|
-
extends TypedFunctionPayload<[
|
5932
|
-
arguments_decoded: [
|
5945
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
5946
|
+
arguments_decoded: [MoveAddressType, bigint];
|
5933
5947
|
type_arguments: [string];
|
5934
5948
|
}
|
5935
5949
|
}
|
@@ -6317,50 +6331,50 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
6317
6331
|
|
6318
6332
|
export namespace staking_proxy {
|
6319
6333
|
export interface SetOperatorPayload
|
6320
|
-
extends TypedFunctionPayload<[
|
6321
|
-
arguments_decoded: [
|
6334
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
6335
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
6322
6336
|
type_arguments: [];
|
6323
6337
|
}
|
6324
6338
|
|
6325
6339
|
export interface SetStakePoolOperatorPayload
|
6326
|
-
extends TypedFunctionPayload<[
|
6327
|
-
arguments_decoded: [
|
6340
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
6341
|
+
arguments_decoded: [MoveAddressType];
|
6328
6342
|
type_arguments: [];
|
6329
6343
|
}
|
6330
6344
|
|
6331
6345
|
export interface SetStakePoolVoterPayload
|
6332
|
-
extends TypedFunctionPayload<[
|
6333
|
-
arguments_decoded: [
|
6346
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
6347
|
+
arguments_decoded: [MoveAddressType];
|
6334
6348
|
type_arguments: [];
|
6335
6349
|
}
|
6336
6350
|
|
6337
6351
|
export interface SetStakingContractOperatorPayload
|
6338
|
-
extends TypedFunctionPayload<[
|
6339
|
-
arguments_decoded: [
|
6352
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
6353
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
6340
6354
|
type_arguments: [];
|
6341
6355
|
}
|
6342
6356
|
|
6343
6357
|
export interface SetStakingContractVoterPayload
|
6344
|
-
extends TypedFunctionPayload<[
|
6345
|
-
arguments_decoded: [
|
6358
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
6359
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
6346
6360
|
type_arguments: [];
|
6347
6361
|
}
|
6348
6362
|
|
6349
6363
|
export interface SetVestingContractOperatorPayload
|
6350
|
-
extends TypedFunctionPayload<[
|
6351
|
-
arguments_decoded: [
|
6364
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
6365
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
6352
6366
|
type_arguments: [];
|
6353
6367
|
}
|
6354
6368
|
|
6355
6369
|
export interface SetVestingContractVoterPayload
|
6356
|
-
extends TypedFunctionPayload<[
|
6357
|
-
arguments_decoded: [
|
6370
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
6371
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
6358
6372
|
type_arguments: [];
|
6359
6373
|
}
|
6360
6374
|
|
6361
6375
|
export interface SetVoterPayload
|
6362
|
-
extends TypedFunctionPayload<[
|
6363
|
-
arguments_decoded: [
|
6376
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
6377
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
6364
6378
|
type_arguments: [];
|
6365
6379
|
}
|
6366
6380
|
}
|
@@ -7222,8 +7236,8 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
7222
7236
|
|
7223
7237
|
export namespace delegation_pool {
|
7224
7238
|
export interface AddStakeEvent {
|
7225
|
-
pool_address:
|
7226
|
-
delegator_address:
|
7239
|
+
pool_address: MoveAddressType;
|
7240
|
+
delegator_address: MoveAddressType;
|
7227
7241
|
amount_added: bigint;
|
7228
7242
|
add_stake_fee: bigint;
|
7229
7243
|
}
|
@@ -7246,8 +7260,8 @@ export namespace delegation_pool {
|
|
7246
7260
|
|
7247
7261
|
export interface CreateProposalEvent {
|
7248
7262
|
proposal_id: bigint;
|
7249
|
-
voter:
|
7250
|
-
delegation_pool:
|
7263
|
+
voter: MoveAddressType;
|
7264
|
+
delegation_pool: MoveAddressType;
|
7251
7265
|
}
|
7252
7266
|
|
7253
7267
|
export namespace CreateProposalEvent {
|
@@ -7269,9 +7283,9 @@ export namespace delegation_pool {
|
|
7269
7283
|
}
|
7270
7284
|
|
7271
7285
|
export interface DelegateVotingPowerEvent {
|
7272
|
-
pool_address:
|
7273
|
-
delegator:
|
7274
|
-
voter:
|
7286
|
+
pool_address: MoveAddressType;
|
7287
|
+
delegator: MoveAddressType;
|
7288
|
+
voter: MoveAddressType;
|
7275
7289
|
}
|
7276
7290
|
|
7277
7291
|
export namespace DelegateVotingPowerEvent {
|
@@ -7323,7 +7337,7 @@ export namespace delegation_pool {
|
|
7323
7337
|
pool_u64_unbound.Pool
|
7324
7338
|
>;
|
7325
7339
|
pending_withdrawals: table.Table<
|
7326
|
-
|
7340
|
+
MoveAddressType,
|
7327
7341
|
delegation_pool.ObservedLockupCycle
|
7328
7342
|
>;
|
7329
7343
|
stake_pool_signer_cap: account.SignerCapability;
|
@@ -7347,7 +7361,7 @@ export namespace delegation_pool {
|
|
7347
7361
|
}
|
7348
7362
|
|
7349
7363
|
export interface DelegationPoolOwnership {
|
7350
|
-
pool_address:
|
7364
|
+
pool_address: MoveAddressType;
|
7351
7365
|
}
|
7352
7366
|
|
7353
7367
|
export namespace DelegationPoolOwnership {
|
@@ -7363,8 +7377,8 @@ export namespace delegation_pool {
|
|
7363
7377
|
}
|
7364
7378
|
|
7365
7379
|
export interface DistributeCommissionEvent {
|
7366
|
-
pool_address:
|
7367
|
-
operator:
|
7380
|
+
pool_address: MoveAddressType;
|
7381
|
+
operator: MoveAddressType;
|
7368
7382
|
commission_active: bigint;
|
7369
7383
|
commission_pending_inactive: bigint;
|
7370
7384
|
}
|
@@ -7391,11 +7405,11 @@ export namespace delegation_pool {
|
|
7391
7405
|
votes: smart_table.SmartTable<delegation_pool.VotingRecordKey, bigint>;
|
7392
7406
|
votes_per_proposal: smart_table.SmartTable<bigint, bigint>;
|
7393
7407
|
vote_delegation: smart_table.SmartTable<
|
7394
|
-
|
7408
|
+
MoveAddressType,
|
7395
7409
|
delegation_pool.VoteDelegation
|
7396
7410
|
>;
|
7397
7411
|
delegated_votes: smart_table.SmartTable<
|
7398
|
-
|
7412
|
+
MoveAddressType,
|
7399
7413
|
delegation_pool.DelegatedVotes
|
7400
7414
|
>;
|
7401
7415
|
vote_events: event.EventHandle<delegation_pool.VoteEvent>;
|
@@ -7438,8 +7452,8 @@ export namespace delegation_pool {
|
|
7438
7452
|
}
|
7439
7453
|
|
7440
7454
|
export interface ReactivateStakeEvent {
|
7441
|
-
pool_address:
|
7442
|
-
delegator_address:
|
7455
|
+
pool_address: MoveAddressType;
|
7456
|
+
delegator_address: MoveAddressType;
|
7443
7457
|
amount_reactivated: bigint;
|
7444
7458
|
}
|
7445
7459
|
|
@@ -7462,8 +7476,8 @@ export namespace delegation_pool {
|
|
7462
7476
|
}
|
7463
7477
|
|
7464
7478
|
export interface UnlockStakeEvent {
|
7465
|
-
pool_address:
|
7466
|
-
delegator_address:
|
7479
|
+
pool_address: MoveAddressType;
|
7480
|
+
delegator_address: MoveAddressType;
|
7467
7481
|
amount_unlocked: bigint;
|
7468
7482
|
}
|
7469
7483
|
|
@@ -7486,8 +7500,8 @@ export namespace delegation_pool {
|
|
7486
7500
|
}
|
7487
7501
|
|
7488
7502
|
export interface VoteDelegation {
|
7489
|
-
voter:
|
7490
|
-
pending_voter:
|
7503
|
+
voter: MoveAddressType;
|
7504
|
+
pending_voter: MoveAddressType;
|
7491
7505
|
last_locked_until_secs: bigint;
|
7492
7506
|
}
|
7493
7507
|
|
@@ -7508,9 +7522,9 @@ export namespace delegation_pool {
|
|
7508
7522
|
}
|
7509
7523
|
|
7510
7524
|
export interface VoteEvent {
|
7511
|
-
voter:
|
7525
|
+
voter: MoveAddressType;
|
7512
7526
|
proposal_id: bigint;
|
7513
|
-
delegation_pool:
|
7527
|
+
delegation_pool: MoveAddressType;
|
7514
7528
|
num_votes: bigint;
|
7515
7529
|
should_pass: Boolean;
|
7516
7530
|
}
|
@@ -7531,7 +7545,7 @@ export namespace delegation_pool {
|
|
7531
7545
|
}
|
7532
7546
|
|
7533
7547
|
export interface VotingRecordKey {
|
7534
|
-
voter:
|
7548
|
+
voter: MoveAddressType;
|
7535
7549
|
proposal_id: bigint;
|
7536
7550
|
}
|
7537
7551
|
|
@@ -7554,8 +7568,8 @@ export namespace delegation_pool {
|
|
7554
7568
|
}
|
7555
7569
|
|
7556
7570
|
export interface WithdrawStakeEvent {
|
7557
|
-
pool_address:
|
7558
|
-
delegator_address:
|
7571
|
+
pool_address: MoveAddressType;
|
7572
|
+
delegator_address: MoveAddressType;
|
7559
7573
|
amount_withdrawn: bigint;
|
7560
7574
|
}
|
7561
7575
|
|
@@ -7578,26 +7592,28 @@ export namespace delegation_pool {
|
|
7578
7592
|
}
|
7579
7593
|
|
7580
7594
|
export interface AddStakePayload
|
7581
|
-
extends TypedFunctionPayload<[
|
7582
|
-
arguments_decoded: [
|
7595
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
7596
|
+
arguments_decoded: [MoveAddressType, bigint];
|
7583
7597
|
type_arguments: [];
|
7584
7598
|
}
|
7585
7599
|
|
7586
7600
|
export interface CreateProposalPayload
|
7587
|
-
extends TypedFunctionPayload<
|
7588
|
-
|
7601
|
+
extends TypedFunctionPayload<
|
7602
|
+
[MoveAddressType, string, string, string, Boolean]
|
7603
|
+
> {
|
7604
|
+
arguments_decoded: [MoveAddressType, string, string, string, Boolean];
|
7589
7605
|
type_arguments: [];
|
7590
7606
|
}
|
7591
7607
|
|
7592
7608
|
export interface DelegateVotingPowerPayload
|
7593
|
-
extends TypedFunctionPayload<[
|
7594
|
-
arguments_decoded: [
|
7609
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
7610
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
7595
7611
|
type_arguments: [];
|
7596
7612
|
}
|
7597
7613
|
|
7598
7614
|
export interface EnablePartialGovernanceVotingPayload
|
7599
|
-
extends TypedFunctionPayload<[
|
7600
|
-
arguments_decoded: [
|
7615
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
7616
|
+
arguments_decoded: [MoveAddressType];
|
7601
7617
|
type_arguments: [];
|
7602
7618
|
}
|
7603
7619
|
|
@@ -7608,43 +7624,44 @@ export namespace delegation_pool {
|
|
7608
7624
|
}
|
7609
7625
|
|
7610
7626
|
export interface ReactivateStakePayload
|
7611
|
-
extends TypedFunctionPayload<[
|
7612
|
-
arguments_decoded: [
|
7627
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
7628
|
+
arguments_decoded: [MoveAddressType, bigint];
|
7613
7629
|
type_arguments: [];
|
7614
7630
|
}
|
7615
7631
|
|
7616
7632
|
export interface SetDelegatedVoterPayload
|
7617
|
-
extends TypedFunctionPayload<[
|
7618
|
-
arguments_decoded: [
|
7633
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
7634
|
+
arguments_decoded: [MoveAddressType];
|
7619
7635
|
type_arguments: [];
|
7620
7636
|
}
|
7621
7637
|
|
7622
|
-
export interface SetOperatorPayload
|
7623
|
-
|
7638
|
+
export interface SetOperatorPayload
|
7639
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
7640
|
+
arguments_decoded: [MoveAddressType];
|
7624
7641
|
type_arguments: [];
|
7625
7642
|
}
|
7626
7643
|
|
7627
7644
|
export interface SynchronizeDelegationPoolPayload
|
7628
|
-
extends TypedFunctionPayload<[
|
7629
|
-
arguments_decoded: [
|
7645
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
7646
|
+
arguments_decoded: [MoveAddressType];
|
7630
7647
|
type_arguments: [];
|
7631
7648
|
}
|
7632
7649
|
|
7633
7650
|
export interface UnlockPayload
|
7634
|
-
extends TypedFunctionPayload<[
|
7635
|
-
arguments_decoded: [
|
7651
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
7652
|
+
arguments_decoded: [MoveAddressType, bigint];
|
7636
7653
|
type_arguments: [];
|
7637
7654
|
}
|
7638
7655
|
|
7639
7656
|
export interface VotePayload
|
7640
|
-
extends TypedFunctionPayload<[
|
7641
|
-
arguments_decoded: [
|
7657
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, Boolean]> {
|
7658
|
+
arguments_decoded: [MoveAddressType, bigint, bigint, Boolean];
|
7642
7659
|
type_arguments: [];
|
7643
7660
|
}
|
7644
7661
|
|
7645
7662
|
export interface WithdrawPayload
|
7646
|
-
extends TypedFunctionPayload<[
|
7647
|
-
arguments_decoded: [
|
7663
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
7664
|
+
arguments_decoded: [MoveAddressType, bigint];
|
7648
7665
|
type_arguments: [];
|
7649
7666
|
}
|
7650
7667
|
}
|
@@ -7802,7 +7819,7 @@ export namespace transaction_fee {
|
|
7802
7819
|
|
7803
7820
|
export interface CollectedFeesPerBlock {
|
7804
7821
|
amount: coin.AggregatableCoin<aptos_coin.AptosCoin>;
|
7805
|
-
proposer: option.Option<
|
7822
|
+
proposer: option.Option<MoveAddressType>;
|
7806
7823
|
burn_percentage: number;
|
7807
7824
|
}
|
7808
7825
|
|
@@ -8030,8 +8047,8 @@ export namespace aptos_governance {
|
|
8030
8047
|
}
|
8031
8048
|
|
8032
8049
|
export interface CreateProposalEvent {
|
8033
|
-
proposer:
|
8034
|
-
stake_pool:
|
8050
|
+
proposer: MoveAddressType;
|
8051
|
+
stake_pool: MoveAddressType;
|
8035
8052
|
proposal_id: bigint;
|
8036
8053
|
execution_hash: string;
|
8037
8054
|
proposal_metadata: simple_map.SimpleMap<string, string>;
|
@@ -8092,7 +8109,10 @@ export namespace aptos_governance {
|
|
8092
8109
|
}
|
8093
8110
|
|
8094
8111
|
export interface GovernanceResponsbility {
|
8095
|
-
signer_caps: simple_map.SimpleMap<
|
8112
|
+
signer_caps: simple_map.SimpleMap<
|
8113
|
+
MoveAddressType,
|
8114
|
+
account.SignerCapability
|
8115
|
+
>;
|
8096
8116
|
}
|
8097
8117
|
|
8098
8118
|
export namespace GovernanceResponsbility {
|
@@ -8108,7 +8128,7 @@ export namespace aptos_governance {
|
|
8108
8128
|
}
|
8109
8129
|
|
8110
8130
|
export interface RecordKey {
|
8111
|
-
stake_pool:
|
8131
|
+
stake_pool: MoveAddressType;
|
8112
8132
|
proposal_id: bigint;
|
8113
8133
|
}
|
8114
8134
|
|
@@ -8153,8 +8173,8 @@ export namespace aptos_governance {
|
|
8153
8173
|
|
8154
8174
|
export interface VoteEvent {
|
8155
8175
|
proposal_id: bigint;
|
8156
|
-
voter:
|
8157
|
-
stake_pool:
|
8176
|
+
voter: MoveAddressType;
|
8177
|
+
stake_pool: MoveAddressType;
|
8158
8178
|
num_votes: bigint;
|
8159
8179
|
should_pass: Boolean;
|
8160
8180
|
}
|
@@ -8211,26 +8231,28 @@ export namespace aptos_governance {
|
|
8211
8231
|
}
|
8212
8232
|
|
8213
8233
|
export interface CreateProposalPayload
|
8214
|
-
extends TypedFunctionPayload<[
|
8215
|
-
arguments_decoded: [
|
8234
|
+
extends TypedFunctionPayload<[MoveAddressType, string, string, string]> {
|
8235
|
+
arguments_decoded: [MoveAddressType, string, string, string];
|
8216
8236
|
type_arguments: [];
|
8217
8237
|
}
|
8218
8238
|
|
8219
8239
|
export interface CreateProposalV2Payload
|
8220
|
-
extends TypedFunctionPayload<
|
8221
|
-
|
8240
|
+
extends TypedFunctionPayload<
|
8241
|
+
[MoveAddressType, string, string, string, Boolean]
|
8242
|
+
> {
|
8243
|
+
arguments_decoded: [MoveAddressType, string, string, string, Boolean];
|
8222
8244
|
type_arguments: [];
|
8223
8245
|
}
|
8224
8246
|
|
8225
8247
|
export interface PartialVotePayload
|
8226
|
-
extends TypedFunctionPayload<[
|
8227
|
-
arguments_decoded: [
|
8248
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, Boolean]> {
|
8249
|
+
arguments_decoded: [MoveAddressType, bigint, bigint, Boolean];
|
8228
8250
|
type_arguments: [];
|
8229
8251
|
}
|
8230
8252
|
|
8231
8253
|
export interface VotePayload
|
8232
|
-
extends TypedFunctionPayload<[
|
8233
|
-
arguments_decoded: [
|
8254
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, Boolean]> {
|
8255
|
+
arguments_decoded: [MoveAddressType, bigint, Boolean];
|
8234
8256
|
type_arguments: [];
|
8235
8257
|
}
|
8236
8258
|
}
|
@@ -9064,7 +9086,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
9064
9086
|
|
9065
9087
|
export namespace multisig_account {
|
9066
9088
|
export interface AddOwnersEvent {
|
9067
|
-
owners_added:
|
9089
|
+
owners_added: MoveAddressType[];
|
9068
9090
|
}
|
9069
9091
|
|
9070
9092
|
export namespace AddOwnersEvent {
|
@@ -9084,7 +9106,7 @@ export namespace multisig_account {
|
|
9084
9106
|
}
|
9085
9107
|
|
9086
9108
|
export interface CreateTransactionEvent {
|
9087
|
-
creator:
|
9109
|
+
creator: MoveAddressType;
|
9088
9110
|
sequence_number: bigint;
|
9089
9111
|
transaction: multisig_account.MultisigTransaction;
|
9090
9112
|
}
|
@@ -9110,7 +9132,7 @@ export namespace multisig_account {
|
|
9110
9132
|
export interface ExecuteRejectedTransactionEvent {
|
9111
9133
|
sequence_number: bigint;
|
9112
9134
|
num_rejections: bigint;
|
9113
|
-
executor:
|
9135
|
+
executor: MoveAddressType;
|
9114
9136
|
}
|
9115
9137
|
|
9116
9138
|
export namespace ExecuteRejectedTransactionEvent {
|
@@ -9178,7 +9200,7 @@ export namespace multisig_account {
|
|
9178
9200
|
}
|
9179
9201
|
|
9180
9202
|
export interface MultisigAccount {
|
9181
|
-
owners:
|
9203
|
+
owners: MoveAddressType[];
|
9182
9204
|
num_signatures_required: bigint;
|
9183
9205
|
transactions: table.Table<bigint, multisig_account.MultisigTransaction>;
|
9184
9206
|
last_executed_sequence_number: bigint;
|
@@ -9210,9 +9232,9 @@ export namespace multisig_account {
|
|
9210
9232
|
|
9211
9233
|
export interface MultisigAccountCreationMessage {
|
9212
9234
|
chain_id: number;
|
9213
|
-
account_address:
|
9235
|
+
account_address: MoveAddressType;
|
9214
9236
|
sequence_number: bigint;
|
9215
|
-
owners:
|
9237
|
+
owners: MoveAddressType[];
|
9216
9238
|
num_signatures_required: bigint;
|
9217
9239
|
}
|
9218
9240
|
|
@@ -9231,9 +9253,9 @@ export namespace multisig_account {
|
|
9231
9253
|
|
9232
9254
|
export interface MultisigAccountCreationWithAuthKeyRevocationMessage {
|
9233
9255
|
chain_id: number;
|
9234
|
-
account_address:
|
9256
|
+
account_address: MoveAddressType;
|
9235
9257
|
sequence_number: bigint;
|
9236
|
-
owners:
|
9258
|
+
owners: MoveAddressType[];
|
9237
9259
|
num_signatures_required: bigint;
|
9238
9260
|
}
|
9239
9261
|
|
@@ -9254,8 +9276,8 @@ export namespace multisig_account {
|
|
9254
9276
|
export interface MultisigTransaction {
|
9255
9277
|
payload: option.Option<string>;
|
9256
9278
|
payload_hash: option.Option<string>;
|
9257
|
-
votes: simple_map.SimpleMap<
|
9258
|
-
creator:
|
9279
|
+
votes: simple_map.SimpleMap<MoveAddressType, Boolean>;
|
9280
|
+
creator: MoveAddressType;
|
9259
9281
|
creation_time_secs: bigint;
|
9260
9282
|
}
|
9261
9283
|
|
@@ -9278,7 +9300,7 @@ export namespace multisig_account {
|
|
9278
9300
|
}
|
9279
9301
|
|
9280
9302
|
export interface RemoveOwnersEvent {
|
9281
|
-
owners_removed:
|
9303
|
+
owners_removed: MoveAddressType[];
|
9282
9304
|
}
|
9283
9305
|
|
9284
9306
|
export namespace RemoveOwnersEvent {
|
@@ -9300,7 +9322,7 @@ export namespace multisig_account {
|
|
9300
9322
|
}
|
9301
9323
|
|
9302
9324
|
export interface TransactionExecutionFailedEvent {
|
9303
|
-
executor:
|
9325
|
+
executor: MoveAddressType;
|
9304
9326
|
sequence_number: bigint;
|
9305
9327
|
transaction_payload: string;
|
9306
9328
|
num_approvals: bigint;
|
@@ -9327,7 +9349,7 @@ export namespace multisig_account {
|
|
9327
9349
|
}
|
9328
9350
|
|
9329
9351
|
export interface TransactionExecutionSucceededEvent {
|
9330
|
-
executor:
|
9352
|
+
executor: MoveAddressType;
|
9331
9353
|
sequence_number: bigint;
|
9332
9354
|
transaction_payload: string;
|
9333
9355
|
num_approvals: bigint;
|
@@ -9377,7 +9399,7 @@ export namespace multisig_account {
|
|
9377
9399
|
}
|
9378
9400
|
|
9379
9401
|
export interface VoteEvent {
|
9380
|
-
owner:
|
9402
|
+
owner: MoveAddressType;
|
9381
9403
|
sequence_number: bigint;
|
9382
9404
|
approved: Boolean;
|
9383
9405
|
}
|
@@ -9397,25 +9419,27 @@ export namespace multisig_account {
|
|
9397
9419
|
type_arguments: [];
|
9398
9420
|
}
|
9399
9421
|
|
9400
|
-
export interface AddOwnerPayload
|
9401
|
-
|
9422
|
+
export interface AddOwnerPayload
|
9423
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
9424
|
+
arguments_decoded: [MoveAddressType];
|
9402
9425
|
type_arguments: [];
|
9403
9426
|
}
|
9404
9427
|
|
9405
|
-
export interface AddOwnersPayload
|
9406
|
-
|
9428
|
+
export interface AddOwnersPayload
|
9429
|
+
extends TypedFunctionPayload<[MoveAddressType[]]> {
|
9430
|
+
arguments_decoded: [MoveAddressType[]];
|
9407
9431
|
type_arguments: [];
|
9408
9432
|
}
|
9409
9433
|
|
9410
9434
|
export interface AddOwnersAndUpdateSignaturesRequiredPayload
|
9411
|
-
extends TypedFunctionPayload<[
|
9412
|
-
arguments_decoded: [
|
9435
|
+
extends TypedFunctionPayload<[MoveAddressType[], bigint]> {
|
9436
|
+
arguments_decoded: [MoveAddressType[], bigint];
|
9413
9437
|
type_arguments: [];
|
9414
9438
|
}
|
9415
9439
|
|
9416
9440
|
export interface ApproveTransactionPayload
|
9417
|
-
extends TypedFunctionPayload<[
|
9418
|
-
arguments_decoded: [
|
9441
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
9442
|
+
arguments_decoded: [MoveAddressType, bigint];
|
9419
9443
|
type_arguments: [];
|
9420
9444
|
}
|
9421
9445
|
|
@@ -9426,24 +9450,33 @@ export namespace multisig_account {
|
|
9426
9450
|
}
|
9427
9451
|
|
9428
9452
|
export interface CreateTransactionPayload
|
9429
|
-
extends TypedFunctionPayload<[
|
9430
|
-
arguments_decoded: [
|
9453
|
+
extends TypedFunctionPayload<[MoveAddressType, string]> {
|
9454
|
+
arguments_decoded: [MoveAddressType, string];
|
9431
9455
|
type_arguments: [];
|
9432
9456
|
}
|
9433
9457
|
|
9434
9458
|
export interface CreateTransactionWithHashPayload
|
9435
|
-
extends TypedFunctionPayload<[
|
9436
|
-
arguments_decoded: [
|
9459
|
+
extends TypedFunctionPayload<[MoveAddressType, string]> {
|
9460
|
+
arguments_decoded: [MoveAddressType, string];
|
9437
9461
|
type_arguments: [];
|
9438
9462
|
}
|
9439
9463
|
|
9440
9464
|
export interface CreateWithExistingAccountPayload
|
9441
9465
|
extends TypedFunctionPayload<
|
9442
|
-
[
|
9466
|
+
[
|
9467
|
+
MoveAddressType,
|
9468
|
+
MoveAddressType[],
|
9469
|
+
bigint,
|
9470
|
+
number,
|
9471
|
+
string,
|
9472
|
+
string,
|
9473
|
+
string[],
|
9474
|
+
string[],
|
9475
|
+
]
|
9443
9476
|
> {
|
9444
9477
|
arguments_decoded: [
|
9445
|
-
|
9446
|
-
|
9478
|
+
MoveAddressType,
|
9479
|
+
MoveAddressType[],
|
9447
9480
|
bigint,
|
9448
9481
|
number,
|
9449
9482
|
string,
|
@@ -9456,11 +9489,20 @@ export namespace multisig_account {
|
|
9456
9489
|
|
9457
9490
|
export interface CreateWithExistingAccountAndRevokeAuthKeyPayload
|
9458
9491
|
extends TypedFunctionPayload<
|
9459
|
-
[
|
9492
|
+
[
|
9493
|
+
MoveAddressType,
|
9494
|
+
MoveAddressType[],
|
9495
|
+
bigint,
|
9496
|
+
number,
|
9497
|
+
string,
|
9498
|
+
string,
|
9499
|
+
string[],
|
9500
|
+
string[],
|
9501
|
+
]
|
9460
9502
|
> {
|
9461
9503
|
arguments_decoded: [
|
9462
|
-
|
9463
|
-
|
9504
|
+
MoveAddressType,
|
9505
|
+
MoveAddressType[],
|
9464
9506
|
bigint,
|
9465
9507
|
number,
|
9466
9508
|
string,
|
@@ -9472,55 +9514,62 @@ export namespace multisig_account {
|
|
9472
9514
|
}
|
9473
9515
|
|
9474
9516
|
export interface CreateWithOwnersPayload
|
9475
|
-
extends TypedFunctionPayload<
|
9476
|
-
|
9517
|
+
extends TypedFunctionPayload<
|
9518
|
+
[MoveAddressType[], bigint, string[], string[]]
|
9519
|
+
> {
|
9520
|
+
arguments_decoded: [MoveAddressType[], bigint, string[], string[]];
|
9477
9521
|
type_arguments: [];
|
9478
9522
|
}
|
9479
9523
|
|
9480
9524
|
export interface CreateWithOwnersThenRemoveBootstrapperPayload
|
9481
|
-
extends TypedFunctionPayload<
|
9482
|
-
|
9525
|
+
extends TypedFunctionPayload<
|
9526
|
+
[MoveAddressType[], bigint, string[], string[]]
|
9527
|
+
> {
|
9528
|
+
arguments_decoded: [MoveAddressType[], bigint, string[], string[]];
|
9483
9529
|
type_arguments: [];
|
9484
9530
|
}
|
9485
9531
|
|
9486
9532
|
export interface ExecuteRejectedTransactionPayload
|
9487
|
-
extends TypedFunctionPayload<[
|
9488
|
-
arguments_decoded: [
|
9533
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
9534
|
+
arguments_decoded: [MoveAddressType];
|
9489
9535
|
type_arguments: [];
|
9490
9536
|
}
|
9491
9537
|
|
9492
9538
|
export interface RejectTransactionPayload
|
9493
|
-
extends TypedFunctionPayload<[
|
9494
|
-
arguments_decoded: [
|
9539
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
9540
|
+
arguments_decoded: [MoveAddressType, bigint];
|
9495
9541
|
type_arguments: [];
|
9496
9542
|
}
|
9497
9543
|
|
9498
|
-
export interface RemoveOwnerPayload
|
9499
|
-
|
9544
|
+
export interface RemoveOwnerPayload
|
9545
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
9546
|
+
arguments_decoded: [MoveAddressType];
|
9500
9547
|
type_arguments: [];
|
9501
9548
|
}
|
9502
9549
|
|
9503
9550
|
export interface RemoveOwnersPayload
|
9504
|
-
extends TypedFunctionPayload<[
|
9505
|
-
arguments_decoded: [
|
9551
|
+
extends TypedFunctionPayload<[MoveAddressType[]]> {
|
9552
|
+
arguments_decoded: [MoveAddressType[]];
|
9506
9553
|
type_arguments: [];
|
9507
9554
|
}
|
9508
9555
|
|
9509
9556
|
export interface SwapOwnerPayload
|
9510
|
-
extends TypedFunctionPayload<[
|
9511
|
-
arguments_decoded: [
|
9557
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
9558
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
9512
9559
|
type_arguments: [];
|
9513
9560
|
}
|
9514
9561
|
|
9515
9562
|
export interface SwapOwnersPayload
|
9516
|
-
extends TypedFunctionPayload<[
|
9517
|
-
arguments_decoded: [
|
9563
|
+
extends TypedFunctionPayload<[MoveAddressType[], MoveAddressType[]]> {
|
9564
|
+
arguments_decoded: [MoveAddressType[], MoveAddressType[]];
|
9518
9565
|
type_arguments: [];
|
9519
9566
|
}
|
9520
9567
|
|
9521
9568
|
export interface SwapOwnersAndUpdateSignaturesRequiredPayload
|
9522
|
-
extends TypedFunctionPayload<
|
9523
|
-
|
9569
|
+
extends TypedFunctionPayload<
|
9570
|
+
[MoveAddressType[], MoveAddressType[], bigint]
|
9571
|
+
> {
|
9572
|
+
arguments_decoded: [MoveAddressType[], MoveAddressType[], bigint];
|
9524
9573
|
type_arguments: [];
|
9525
9574
|
}
|
9526
9575
|
|
@@ -9537,8 +9586,8 @@ export namespace multisig_account {
|
|
9537
9586
|
}
|
9538
9587
|
|
9539
9588
|
export interface VoteTransanctionPayload
|
9540
|
-
extends TypedFunctionPayload<[
|
9541
|
-
arguments_decoded: [
|
9589
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint, Boolean]> {
|
9590
|
+
arguments_decoded: [MoveAddressType, bigint, Boolean];
|
9542
9591
|
type_arguments: [];
|
9543
9592
|
}
|
9544
9593
|
}
|
@@ -9547,7 +9596,7 @@ export namespace pool_u64_unbound {
|
|
9547
9596
|
export interface Pool {
|
9548
9597
|
total_coins: bigint;
|
9549
9598
|
total_shares: bigint;
|
9550
|
-
shares: table_with_length.TableWithLength<
|
9599
|
+
shares: table_with_length.TableWithLength<MoveAddressType, bigint>;
|
9551
9600
|
scaling_factor: bigint;
|
9552
9601
|
}
|
9553
9602
|
|
@@ -9639,7 +9688,7 @@ export class resource_account extends AptosBaseProcessor {
|
|
9639
9688
|
|
9640
9689
|
export namespace resource_account {
|
9641
9690
|
export interface Container {
|
9642
|
-
store: simple_map.SimpleMap<
|
9691
|
+
store: simple_map.SimpleMap<MoveAddressType, account.SignerCapability>;
|
9643
9692
|
}
|
9644
9693
|
|
9645
9694
|
export namespace Container {
|
@@ -10043,8 +10092,8 @@ export class staking_contract extends AptosBaseProcessor {
|
|
10043
10092
|
|
10044
10093
|
export namespace staking_contract {
|
10045
10094
|
export interface AddDistributionEvent {
|
10046
|
-
operator:
|
10047
|
-
pool_address:
|
10095
|
+
operator: MoveAddressType;
|
10096
|
+
pool_address: MoveAddressType;
|
10048
10097
|
amount: bigint;
|
10049
10098
|
}
|
10050
10099
|
|
@@ -10067,8 +10116,8 @@ export namespace staking_contract {
|
|
10067
10116
|
}
|
10068
10117
|
|
10069
10118
|
export interface AddStakeEvent {
|
10070
|
-
operator:
|
10071
|
-
pool_address:
|
10119
|
+
operator: MoveAddressType;
|
10120
|
+
pool_address: MoveAddressType;
|
10072
10121
|
amount: bigint;
|
10073
10122
|
}
|
10074
10123
|
|
@@ -10089,9 +10138,9 @@ export namespace staking_contract {
|
|
10089
10138
|
}
|
10090
10139
|
|
10091
10140
|
export interface CreateStakingContractEvent {
|
10092
|
-
operator:
|
10093
|
-
voter:
|
10094
|
-
pool_address:
|
10141
|
+
operator: MoveAddressType;
|
10142
|
+
voter: MoveAddressType;
|
10143
|
+
pool_address: MoveAddressType;
|
10095
10144
|
principal: bigint;
|
10096
10145
|
commission_percentage: bigint;
|
10097
10146
|
}
|
@@ -10116,9 +10165,9 @@ export namespace staking_contract {
|
|
10116
10165
|
}
|
10117
10166
|
|
10118
10167
|
export interface DistributeEvent {
|
10119
|
-
operator:
|
10120
|
-
pool_address:
|
10121
|
-
recipient:
|
10168
|
+
operator: MoveAddressType;
|
10169
|
+
pool_address: MoveAddressType;
|
10170
|
+
recipient: MoveAddressType;
|
10122
10171
|
amount: bigint;
|
10123
10172
|
}
|
10124
10173
|
|
@@ -10141,8 +10190,8 @@ export namespace staking_contract {
|
|
10141
10190
|
}
|
10142
10191
|
|
10143
10192
|
export interface RequestCommissionEvent {
|
10144
|
-
operator:
|
10145
|
-
pool_address:
|
10193
|
+
operator: MoveAddressType;
|
10194
|
+
pool_address: MoveAddressType;
|
10146
10195
|
accumulated_rewards: bigint;
|
10147
10196
|
commission_amount: bigint;
|
10148
10197
|
}
|
@@ -10166,8 +10215,8 @@ export namespace staking_contract {
|
|
10166
10215
|
}
|
10167
10216
|
|
10168
10217
|
export interface ResetLockupEvent {
|
10169
|
-
operator:
|
10170
|
-
pool_address:
|
10218
|
+
operator: MoveAddressType;
|
10219
|
+
pool_address: MoveAddressType;
|
10171
10220
|
}
|
10172
10221
|
|
10173
10222
|
export namespace ResetLockupEvent {
|
@@ -10190,7 +10239,7 @@ export namespace staking_contract {
|
|
10190
10239
|
|
10191
10240
|
export interface StakingContract {
|
10192
10241
|
principal: bigint;
|
10193
|
-
pool_address:
|
10242
|
+
pool_address: MoveAddressType;
|
10194
10243
|
owner_cap: stake.OwnerCapability;
|
10195
10244
|
commission_percentage: bigint;
|
10196
10245
|
distribution_pool: pool_u64.Pool;
|
@@ -10244,7 +10293,7 @@ export namespace staking_contract {
|
|
10244
10293
|
|
10245
10294
|
export interface Store {
|
10246
10295
|
staking_contracts: simple_map.SimpleMap<
|
10247
|
-
|
10296
|
+
MoveAddressType,
|
10248
10297
|
staking_contract.StakingContract
|
10249
10298
|
>;
|
10250
10299
|
create_staking_contract_events: event.EventHandle<staking_contract.CreateStakingContractEvent>;
|
@@ -10269,9 +10318,9 @@ export namespace staking_contract {
|
|
10269
10318
|
}
|
10270
10319
|
|
10271
10320
|
export interface SwitchOperatorEvent {
|
10272
|
-
old_operator:
|
10273
|
-
new_operator:
|
10274
|
-
pool_address:
|
10321
|
+
old_operator: MoveAddressType;
|
10322
|
+
new_operator: MoveAddressType;
|
10323
|
+
pool_address: MoveAddressType;
|
10275
10324
|
}
|
10276
10325
|
|
10277
10326
|
export namespace SwitchOperatorEvent {
|
@@ -10293,8 +10342,8 @@ export namespace staking_contract {
|
|
10293
10342
|
}
|
10294
10343
|
|
10295
10344
|
export interface UnlockStakeEvent {
|
10296
|
-
operator:
|
10297
|
-
pool_address:
|
10345
|
+
operator: MoveAddressType;
|
10346
|
+
pool_address: MoveAddressType;
|
10298
10347
|
amount: bigint;
|
10299
10348
|
commission_paid: bigint;
|
10300
10349
|
}
|
@@ -10318,8 +10367,8 @@ export namespace staking_contract {
|
|
10318
10367
|
}
|
10319
10368
|
|
10320
10369
|
export interface UpdateCommissionEvent {
|
10321
|
-
staker:
|
10322
|
-
operator:
|
10370
|
+
staker: MoveAddressType;
|
10371
|
+
operator: MoveAddressType;
|
10323
10372
|
old_commission_percentage: bigint;
|
10324
10373
|
new_commission_percentage: bigint;
|
10325
10374
|
}
|
@@ -10343,10 +10392,10 @@ export namespace staking_contract {
|
|
10343
10392
|
}
|
10344
10393
|
|
10345
10394
|
export interface UpdateVoterEvent {
|
10346
|
-
operator:
|
10347
|
-
pool_address:
|
10348
|
-
old_voter:
|
10349
|
-
new_voter:
|
10395
|
+
operator: MoveAddressType;
|
10396
|
+
pool_address: MoveAddressType;
|
10397
|
+
old_voter: MoveAddressType;
|
10398
|
+
new_voter: MoveAddressType;
|
10350
10399
|
}
|
10351
10400
|
|
10352
10401
|
export namespace UpdateVoterEvent {
|
@@ -10368,67 +10417,76 @@ export namespace staking_contract {
|
|
10368
10417
|
}
|
10369
10418
|
|
10370
10419
|
export interface AddStakePayload
|
10371
|
-
extends TypedFunctionPayload<[
|
10372
|
-
arguments_decoded: [
|
10420
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
10421
|
+
arguments_decoded: [MoveAddressType, bigint];
|
10373
10422
|
type_arguments: [];
|
10374
10423
|
}
|
10375
10424
|
|
10376
10425
|
export interface CreateStakingContractPayload
|
10377
|
-
extends TypedFunctionPayload<
|
10378
|
-
|
10426
|
+
extends TypedFunctionPayload<
|
10427
|
+
[MoveAddressType, MoveAddressType, bigint, bigint, string]
|
10428
|
+
> {
|
10429
|
+
arguments_decoded: [
|
10430
|
+
MoveAddressType,
|
10431
|
+
MoveAddressType,
|
10432
|
+
bigint,
|
10433
|
+
bigint,
|
10434
|
+
string,
|
10435
|
+
];
|
10379
10436
|
type_arguments: [];
|
10380
10437
|
}
|
10381
10438
|
|
10382
10439
|
export interface DistributePayload
|
10383
|
-
extends TypedFunctionPayload<[
|
10384
|
-
arguments_decoded: [
|
10440
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
10441
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
10385
10442
|
type_arguments: [];
|
10386
10443
|
}
|
10387
10444
|
|
10388
10445
|
export interface RequestCommissionPayload
|
10389
|
-
extends TypedFunctionPayload<[
|
10390
|
-
arguments_decoded: [
|
10446
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
10447
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
10391
10448
|
type_arguments: [];
|
10392
10449
|
}
|
10393
10450
|
|
10394
|
-
export interface ResetLockupPayload
|
10395
|
-
|
10451
|
+
export interface ResetLockupPayload
|
10452
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
10453
|
+
arguments_decoded: [MoveAddressType];
|
10396
10454
|
type_arguments: [];
|
10397
10455
|
}
|
10398
10456
|
|
10399
10457
|
export interface SwitchOperatorPayload
|
10400
|
-
extends TypedFunctionPayload<[
|
10401
|
-
arguments_decoded: [
|
10458
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType, bigint]> {
|
10459
|
+
arguments_decoded: [MoveAddressType, MoveAddressType, bigint];
|
10402
10460
|
type_arguments: [];
|
10403
10461
|
}
|
10404
10462
|
|
10405
10463
|
export interface SwitchOperatorWithSameCommissionPayload
|
10406
|
-
extends TypedFunctionPayload<[
|
10407
|
-
arguments_decoded: [
|
10464
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
10465
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
10408
10466
|
type_arguments: [];
|
10409
10467
|
}
|
10410
10468
|
|
10411
10469
|
export interface UnlockRewardsPayload
|
10412
|
-
extends TypedFunctionPayload<[
|
10413
|
-
arguments_decoded: [
|
10470
|
+
extends TypedFunctionPayload<[MoveAddressType]> {
|
10471
|
+
arguments_decoded: [MoveAddressType];
|
10414
10472
|
type_arguments: [];
|
10415
10473
|
}
|
10416
10474
|
|
10417
10475
|
export interface UnlockStakePayload
|
10418
|
-
extends TypedFunctionPayload<[
|
10419
|
-
arguments_decoded: [
|
10476
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
10477
|
+
arguments_decoded: [MoveAddressType, bigint];
|
10420
10478
|
type_arguments: [];
|
10421
10479
|
}
|
10422
10480
|
|
10423
10481
|
export interface UpdateCommisionPayload
|
10424
|
-
extends TypedFunctionPayload<[
|
10425
|
-
arguments_decoded: [
|
10482
|
+
extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
10483
|
+
arguments_decoded: [MoveAddressType, bigint];
|
10426
10484
|
type_arguments: [];
|
10427
10485
|
}
|
10428
10486
|
|
10429
10487
|
export interface UpdateVoterPayload
|
10430
|
-
extends TypedFunctionPayload<[
|
10431
|
-
arguments_decoded: [
|
10488
|
+
extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
10489
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
10432
10490
|
type_arguments: [];
|
10433
10491
|
}
|
10434
10492
|
}
|
@@ -10459,7 +10517,7 @@ export namespace table_with_length {
|
|
10459
10517
|
|
10460
10518
|
export namespace aggregator_factory {
|
10461
10519
|
export interface AggregatorFactory {
|
10462
|
-
phantom_table: table.Table<
|
10520
|
+
phantom_table: table.Table<MoveAddressType, bigint>;
|
10463
10521
|
}
|
10464
10522
|
|
10465
10523
|
export namespace AggregatorFactory {
|
@@ -10592,7 +10650,7 @@ export class transaction_context extends AptosBaseProcessor {
|
|
10592
10650
|
|
10593
10651
|
export namespace transaction_context {
|
10594
10652
|
export interface AUID {
|
10595
|
-
unique_address:
|
10653
|
+
unique_address: MoveAddressType;
|
10596
10654
|
}
|
10597
10655
|
|
10598
10656
|
export namespace AUID {
|
@@ -10788,15 +10846,17 @@ export namespace primary_fungible_store {
|
|
10788
10846
|
}
|
10789
10847
|
|
10790
10848
|
export interface TransferPayload<T0 = any>
|
10791
|
-
extends TypedFunctionPayload<
|
10792
|
-
|
10849
|
+
extends TypedFunctionPayload<
|
10850
|
+
[object_.Object<T0>, MoveAddressType, bigint]
|
10851
|
+
> {
|
10852
|
+
arguments_decoded: [object_.Object<T0>, MoveAddressType, bigint];
|
10793
10853
|
type_arguments: [string];
|
10794
10854
|
}
|
10795
10855
|
}
|
10796
10856
|
|
10797
10857
|
export namespace transaction_validation {
|
10798
10858
|
export interface TransactionValidation {
|
10799
|
-
module_addr:
|
10859
|
+
module_addr: MoveAddressType;
|
10800
10860
|
module_name: string;
|
10801
10861
|
script_prologue_name: string;
|
10802
10862
|
module_prologue_name: string;
|