@sentio/sdk 2.22.3-rc.2 → 2.22.3-rc.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/aptos/builtin/0x1.d.ts +337 -338
- 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 +52 -69
- package/lib/aptos/builtin/0x3.d.ts.map +1 -1
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/codegen/codegen.js +0 -1
- package/lib/aptos/codegen/codegen.js.map +1 -1
- package/lib/move/abstract-codegen.d.ts.map +1 -1
- package/lib/move/abstract-codegen.js +2 -2
- package/lib/move/abstract-codegen.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +72 -76
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +155 -171
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/sui/codegen/codegen.js +0 -2
- package/lib/sui/codegen/codegen.js.map +1 -1
- package/lib/sui/index.d.ts +0 -1
- package/lib/sui/index.d.ts.map +1 -1
- package/lib/sui/index.js.map +1 -1
- package/lib/sui/move-types.d.ts +0 -1
- package/lib/sui/move-types.d.ts.map +1 -1
- package/lib/sui/move-types.js.map +1 -1
- package/package.json +4 -4
- package/src/aptos/builtin/0x1.ts +337 -341
- package/src/aptos/builtin/0x3.ts +45 -61
- package/src/aptos/codegen/codegen.ts +0 -1
- package/src/move/abstract-codegen.ts +2 -2
- package/src/sui/builtin/0x1.ts +1 -1
- package/src/sui/builtin/0x2.ts +66 -76
- package/src/sui/builtin/0x3.ts +133 -144
- package/src/sui/codegen/codegen.ts +0 -2
- package/src/sui/index.ts +0 -1
- package/src/sui/move-types.ts +0 -2
package/src/aptos/builtin/0x1.ts
CHANGED
@@ -20,11 +20,11 @@ import {
|
|
20
20
|
TypedFunctionPayload,
|
21
21
|
AptosContext,
|
22
22
|
} from "@sentio/sdk/aptos";
|
23
|
-
import {
|
23
|
+
import { ModuleClient } from "@sentio/sdk/aptos";
|
24
24
|
|
25
25
|
export namespace acl {
|
26
26
|
export interface ACL {
|
27
|
-
list:
|
27
|
+
list: string[];
|
28
28
|
}
|
29
29
|
|
30
30
|
export namespace ACL {
|
@@ -89,7 +89,7 @@ export class code extends AptosBaseProcessor {
|
|
89
89
|
|
90
90
|
export namespace code {
|
91
91
|
export interface AllowedDep {
|
92
|
-
account:
|
92
|
+
account: string;
|
93
93
|
module_name: string;
|
94
94
|
}
|
95
95
|
|
@@ -121,7 +121,7 @@ export namespace code {
|
|
121
121
|
}
|
122
122
|
|
123
123
|
export interface PackageDep {
|
124
|
-
account:
|
124
|
+
account: string;
|
125
125
|
package_name: string;
|
126
126
|
}
|
127
127
|
|
@@ -483,20 +483,20 @@ export namespace coin {
|
|
483
483
|
}
|
484
484
|
|
485
485
|
export interface FreezeCoinStorePayload<T0 = any>
|
486
|
-
extends TypedFunctionPayload<[
|
487
|
-
arguments_decoded: [
|
486
|
+
extends TypedFunctionPayload<[string, string]> {
|
487
|
+
arguments_decoded: [string, string];
|
488
488
|
type_arguments: [string];
|
489
489
|
}
|
490
490
|
|
491
491
|
export interface TransferPayload<T0 = any>
|
492
|
-
extends TypedFunctionPayload<[
|
493
|
-
arguments_decoded: [
|
492
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
493
|
+
arguments_decoded: [string, bigint];
|
494
494
|
type_arguments: [string];
|
495
495
|
}
|
496
496
|
|
497
497
|
export interface UnfreezeCoinStorePayload<T0 = any>
|
498
|
-
extends TypedFunctionPayload<[
|
499
|
-
arguments_decoded: [
|
498
|
+
extends TypedFunctionPayload<[string, string]> {
|
499
|
+
arguments_decoded: [string, string];
|
500
500
|
type_arguments: [string];
|
501
501
|
}
|
502
502
|
|
@@ -524,7 +524,7 @@ export namespace guid {
|
|
524
524
|
|
525
525
|
export interface ID {
|
526
526
|
creation_num: bigint;
|
527
|
-
addr:
|
527
|
+
addr: string;
|
528
528
|
}
|
529
529
|
|
530
530
|
export namespace ID {
|
@@ -606,12 +606,12 @@ export namespace block {
|
|
606
606
|
}
|
607
607
|
|
608
608
|
export interface NewBlockEvent {
|
609
|
-
hash:
|
609
|
+
hash: string;
|
610
610
|
epoch: bigint;
|
611
611
|
round: bigint;
|
612
612
|
height: bigint;
|
613
613
|
previous_block_votes_bitvec: string;
|
614
|
-
proposer:
|
614
|
+
proposer: string;
|
615
615
|
failed_proposer_indices: bigint[];
|
616
616
|
time_microseconds: bigint;
|
617
617
|
}
|
@@ -1095,7 +1095,7 @@ export class stake extends AptosBaseProcessor {
|
|
1095
1095
|
|
1096
1096
|
export namespace stake {
|
1097
1097
|
export interface AddStakeEvent {
|
1098
|
-
pool_address:
|
1098
|
+
pool_address: string;
|
1099
1099
|
amount_added: bigint;
|
1100
1100
|
}
|
1101
1101
|
|
@@ -1116,7 +1116,7 @@ export namespace stake {
|
|
1116
1116
|
}
|
1117
1117
|
|
1118
1118
|
export interface AllowedValidators {
|
1119
|
-
accounts:
|
1119
|
+
accounts: string[];
|
1120
1120
|
}
|
1121
1121
|
|
1122
1122
|
export namespace AllowedValidators {
|
@@ -1148,7 +1148,7 @@ export namespace stake {
|
|
1148
1148
|
}
|
1149
1149
|
|
1150
1150
|
export interface DistributeRewardsEvent {
|
1151
|
-
pool_address:
|
1151
|
+
pool_address: string;
|
1152
1152
|
rewards_amount: bigint;
|
1153
1153
|
}
|
1154
1154
|
|
@@ -1171,7 +1171,7 @@ export namespace stake {
|
|
1171
1171
|
}
|
1172
1172
|
|
1173
1173
|
export interface IncreaseLockupEvent {
|
1174
|
-
pool_address:
|
1174
|
+
pool_address: string;
|
1175
1175
|
old_locked_until_secs: bigint;
|
1176
1176
|
new_locked_until_secs: bigint;
|
1177
1177
|
}
|
@@ -1212,7 +1212,7 @@ export namespace stake {
|
|
1212
1212
|
}
|
1213
1213
|
|
1214
1214
|
export interface JoinValidatorSetEvent {
|
1215
|
-
pool_address:
|
1215
|
+
pool_address: string;
|
1216
1216
|
}
|
1217
1217
|
|
1218
1218
|
export namespace JoinValidatorSetEvent {
|
@@ -1234,7 +1234,7 @@ export namespace stake {
|
|
1234
1234
|
}
|
1235
1235
|
|
1236
1236
|
export interface LeaveValidatorSetEvent {
|
1237
|
-
pool_address:
|
1237
|
+
pool_address: string;
|
1238
1238
|
}
|
1239
1239
|
|
1240
1240
|
export namespace LeaveValidatorSetEvent {
|
@@ -1256,7 +1256,7 @@ export namespace stake {
|
|
1256
1256
|
}
|
1257
1257
|
|
1258
1258
|
export interface OwnerCapability {
|
1259
|
-
pool_address:
|
1259
|
+
pool_address: string;
|
1260
1260
|
}
|
1261
1261
|
|
1262
1262
|
export namespace OwnerCapability {
|
@@ -1272,7 +1272,7 @@ export namespace stake {
|
|
1272
1272
|
}
|
1273
1273
|
|
1274
1274
|
export interface ReactivateStakeEvent {
|
1275
|
-
pool_address:
|
1275
|
+
pool_address: string;
|
1276
1276
|
amount: bigint;
|
1277
1277
|
}
|
1278
1278
|
|
@@ -1295,7 +1295,7 @@ export namespace stake {
|
|
1295
1295
|
}
|
1296
1296
|
|
1297
1297
|
export interface RegisterValidatorCandidateEvent {
|
1298
|
-
pool_address:
|
1298
|
+
pool_address: string;
|
1299
1299
|
}
|
1300
1300
|
|
1301
1301
|
export namespace RegisterValidatorCandidateEvent {
|
@@ -1317,7 +1317,7 @@ export namespace stake {
|
|
1317
1317
|
}
|
1318
1318
|
|
1319
1319
|
export interface RotateConsensusKeyEvent {
|
1320
|
-
pool_address:
|
1320
|
+
pool_address: string;
|
1321
1321
|
old_consensus_pubkey: string;
|
1322
1322
|
new_consensus_pubkey: string;
|
1323
1323
|
}
|
@@ -1341,9 +1341,9 @@ export namespace stake {
|
|
1341
1341
|
}
|
1342
1342
|
|
1343
1343
|
export interface SetOperatorEvent {
|
1344
|
-
pool_address:
|
1345
|
-
old_operator:
|
1346
|
-
new_operator:
|
1344
|
+
pool_address: string;
|
1345
|
+
old_operator: string;
|
1346
|
+
new_operator: string;
|
1347
1347
|
}
|
1348
1348
|
|
1349
1349
|
export namespace SetOperatorEvent {
|
@@ -1370,8 +1370,8 @@ export namespace stake {
|
|
1370
1370
|
pending_active: coin.Coin<aptos_coin.AptosCoin>;
|
1371
1371
|
pending_inactive: coin.Coin<aptos_coin.AptosCoin>;
|
1372
1372
|
locked_until_secs: bigint;
|
1373
|
-
operator_address:
|
1374
|
-
delegated_voter:
|
1373
|
+
operator_address: string;
|
1374
|
+
delegated_voter: string;
|
1375
1375
|
initialize_validator_events: event.EventHandle<stake.RegisterValidatorCandidateEvent>;
|
1376
1376
|
set_operator_events: event.EventHandle<stake.SetOperatorEvent>;
|
1377
1377
|
add_stake_events: event.EventHandle<stake.AddStakeEvent>;
|
@@ -1397,7 +1397,7 @@ export namespace stake {
|
|
1397
1397
|
}
|
1398
1398
|
|
1399
1399
|
export interface UnlockStakeEvent {
|
1400
|
-
pool_address:
|
1400
|
+
pool_address: string;
|
1401
1401
|
amount_unlocked: bigint;
|
1402
1402
|
}
|
1403
1403
|
|
@@ -1420,7 +1420,7 @@ export namespace stake {
|
|
1420
1420
|
}
|
1421
1421
|
|
1422
1422
|
export interface UpdateNetworkAndFullnodeAddressesEvent {
|
1423
|
-
pool_address:
|
1423
|
+
pool_address: string;
|
1424
1424
|
old_network_addresses: string;
|
1425
1425
|
new_network_addresses: string;
|
1426
1426
|
old_fullnode_addresses: string;
|
@@ -1466,7 +1466,7 @@ export namespace stake {
|
|
1466
1466
|
}
|
1467
1467
|
|
1468
1468
|
export interface ValidatorFees {
|
1469
|
-
fees_table: table.Table<
|
1469
|
+
fees_table: table.Table<string, coin.Coin<aptos_coin.AptosCoin>>;
|
1470
1470
|
}
|
1471
1471
|
|
1472
1472
|
export namespace ValidatorFees {
|
@@ -1480,7 +1480,7 @@ export namespace stake {
|
|
1480
1480
|
}
|
1481
1481
|
|
1482
1482
|
export interface ValidatorInfo {
|
1483
|
-
addr:
|
1483
|
+
addr: string;
|
1484
1484
|
voting_power: bigint;
|
1485
1485
|
config: stake.ValidatorConfig;
|
1486
1486
|
}
|
@@ -1531,7 +1531,7 @@ export namespace stake {
|
|
1531
1531
|
}
|
1532
1532
|
|
1533
1533
|
export interface WithdrawStakeEvent {
|
1534
|
-
pool_address:
|
1534
|
+
pool_address: string;
|
1535
1535
|
amount_withdrawn: bigint;
|
1536
1536
|
}
|
1537
1537
|
|
@@ -1564,8 +1564,8 @@ export namespace stake {
|
|
1564
1564
|
}
|
1565
1565
|
|
1566
1566
|
export interface InitializeStakeOwnerPayload
|
1567
|
-
extends TypedFunctionPayload<[bigint,
|
1568
|
-
arguments_decoded: [bigint,
|
1567
|
+
extends TypedFunctionPayload<[bigint, string, string]> {
|
1568
|
+
arguments_decoded: [bigint, string, string];
|
1569
1569
|
type_arguments: [];
|
1570
1570
|
}
|
1571
1571
|
|
@@ -1576,14 +1576,14 @@ export namespace stake {
|
|
1576
1576
|
}
|
1577
1577
|
|
1578
1578
|
export interface JoinValidatorSetPayload
|
1579
|
-
extends TypedFunctionPayload<[
|
1580
|
-
arguments_decoded: [
|
1579
|
+
extends TypedFunctionPayload<[string]> {
|
1580
|
+
arguments_decoded: [string];
|
1581
1581
|
type_arguments: [];
|
1582
1582
|
}
|
1583
1583
|
|
1584
1584
|
export interface LeaveValidatorSetPayload
|
1585
|
-
extends TypedFunctionPayload<[
|
1586
|
-
arguments_decoded: [
|
1585
|
+
extends TypedFunctionPayload<[string]> {
|
1586
|
+
arguments_decoded: [string];
|
1587
1587
|
type_arguments: [];
|
1588
1588
|
}
|
1589
1589
|
|
@@ -1594,19 +1594,19 @@ export namespace stake {
|
|
1594
1594
|
}
|
1595
1595
|
|
1596
1596
|
export interface RotateConsensusKeyPayload
|
1597
|
-
extends TypedFunctionPayload<[
|
1598
|
-
arguments_decoded: [
|
1597
|
+
extends TypedFunctionPayload<[string, string, string]> {
|
1598
|
+
arguments_decoded: [string, string, string];
|
1599
1599
|
type_arguments: [];
|
1600
1600
|
}
|
1601
1601
|
|
1602
1602
|
export interface SetDelegatedVoterPayload
|
1603
|
-
extends TypedFunctionPayload<[
|
1604
|
-
arguments_decoded: [
|
1603
|
+
extends TypedFunctionPayload<[string]> {
|
1604
|
+
arguments_decoded: [string];
|
1605
1605
|
type_arguments: [];
|
1606
1606
|
}
|
1607
1607
|
|
1608
|
-
export interface SetOperatorPayload extends TypedFunctionPayload<[
|
1609
|
-
arguments_decoded: [
|
1608
|
+
export interface SetOperatorPayload extends TypedFunctionPayload<[string]> {
|
1609
|
+
arguments_decoded: [string];
|
1610
1610
|
type_arguments: [];
|
1611
1611
|
}
|
1612
1612
|
|
@@ -1616,8 +1616,8 @@ export namespace stake {
|
|
1616
1616
|
}
|
1617
1617
|
|
1618
1618
|
export interface UpdateNetworkAndFullnodeAddressesPayload
|
1619
|
-
extends TypedFunctionPayload<[
|
1620
|
-
arguments_decoded: [
|
1619
|
+
extends TypedFunctionPayload<[string, string, string]> {
|
1620
|
+
arguments_decoded: [string, string, string];
|
1621
1621
|
type_arguments: [];
|
1622
1622
|
}
|
1623
1623
|
|
@@ -1645,7 +1645,7 @@ export namespace table {
|
|
1645
1645
|
}
|
1646
1646
|
|
1647
1647
|
export interface Table<T0, T1> {
|
1648
|
-
handle:
|
1648
|
+
handle: string;
|
1649
1649
|
}
|
1650
1650
|
|
1651
1651
|
export namespace Table {
|
@@ -1710,7 +1710,7 @@ export class object_ extends AptosBaseProcessor {
|
|
1710
1710
|
|
1711
1711
|
export namespace object_ {
|
1712
1712
|
export interface ConstructorRef {
|
1713
|
-
self:
|
1713
|
+
self: string;
|
1714
1714
|
can_delete: Boolean;
|
1715
1715
|
}
|
1716
1716
|
|
@@ -1725,7 +1725,7 @@ export namespace object_ {
|
|
1725
1725
|
}
|
1726
1726
|
|
1727
1727
|
export interface DeleteRef {
|
1728
|
-
self:
|
1728
|
+
self: string;
|
1729
1729
|
}
|
1730
1730
|
|
1731
1731
|
export namespace DeleteRef {
|
@@ -1739,7 +1739,7 @@ export namespace object_ {
|
|
1739
1739
|
}
|
1740
1740
|
|
1741
1741
|
export interface ExtendRef {
|
1742
|
-
self:
|
1742
|
+
self: string;
|
1743
1743
|
}
|
1744
1744
|
|
1745
1745
|
export namespace ExtendRef {
|
@@ -1753,8 +1753,8 @@ export namespace object_ {
|
|
1753
1753
|
}
|
1754
1754
|
|
1755
1755
|
export interface LinearTransferRef {
|
1756
|
-
self:
|
1757
|
-
owner:
|
1756
|
+
self: string;
|
1757
|
+
owner: string;
|
1758
1758
|
}
|
1759
1759
|
|
1760
1760
|
export namespace LinearTransferRef {
|
@@ -1770,7 +1770,7 @@ export namespace object_ {
|
|
1770
1770
|
}
|
1771
1771
|
|
1772
1772
|
export interface Object<T0> {
|
1773
|
-
inner:
|
1773
|
+
inner: string;
|
1774
1774
|
}
|
1775
1775
|
|
1776
1776
|
export namespace Object {
|
@@ -1787,7 +1787,7 @@ export namespace object_ {
|
|
1787
1787
|
|
1788
1788
|
export interface ObjectCore {
|
1789
1789
|
guid_creation_num: bigint;
|
1790
|
-
owner:
|
1790
|
+
owner: string;
|
1791
1791
|
allow_ungated_transfer: Boolean;
|
1792
1792
|
transfer_events: event.EventHandle<object_.TransferEvent>;
|
1793
1793
|
}
|
@@ -1817,9 +1817,9 @@ export namespace object_ {
|
|
1817
1817
|
}
|
1818
1818
|
|
1819
1819
|
export interface TransferEvent {
|
1820
|
-
object:
|
1821
|
-
from:
|
1822
|
-
to:
|
1820
|
+
object: string;
|
1821
|
+
from: string;
|
1822
|
+
to: string;
|
1823
1823
|
}
|
1824
1824
|
|
1825
1825
|
export namespace TransferEvent {
|
@@ -1839,7 +1839,7 @@ export namespace object_ {
|
|
1839
1839
|
}
|
1840
1840
|
|
1841
1841
|
export interface TransferRef {
|
1842
|
-
self:
|
1842
|
+
self: string;
|
1843
1843
|
}
|
1844
1844
|
|
1845
1845
|
export namespace TransferRef {
|
@@ -1853,8 +1853,8 @@ export namespace object_ {
|
|
1853
1853
|
}
|
1854
1854
|
|
1855
1855
|
export interface TransferCallPayload
|
1856
|
-
extends TypedFunctionPayload<[
|
1857
|
-
arguments_decoded: [
|
1856
|
+
extends TypedFunctionPayload<[string, string]> {
|
1857
|
+
arguments_decoded: [string, string];
|
1858
1858
|
type_arguments: [];
|
1859
1859
|
}
|
1860
1860
|
}
|
@@ -1999,7 +1999,7 @@ export namespace voting {
|
|
1999
1999
|
}
|
2000
2000
|
|
2001
2001
|
export interface Proposal<T0> {
|
2002
|
-
proposer:
|
2002
|
+
proposer: string;
|
2003
2003
|
execution_content: option.Option<T0>;
|
2004
2004
|
metadata: simple_map.SimpleMap<string, string>;
|
2005
2005
|
creation_time_secs: bigint;
|
@@ -2026,7 +2026,7 @@ export namespace voting {
|
|
2026
2026
|
}
|
2027
2027
|
|
2028
2028
|
export interface RegisterForumEvent {
|
2029
|
-
hosting_account:
|
2029
|
+
hosting_account: string;
|
2030
2030
|
proposal_type_info: type_info.TypeInfo;
|
2031
2031
|
}
|
2032
2032
|
|
@@ -2345,7 +2345,7 @@ export namespace account {
|
|
2345
2345
|
}
|
2346
2346
|
|
2347
2347
|
export interface CapabilityOffer<T0> {
|
2348
|
-
for: option.Option<
|
2348
|
+
for: option.Option<string>;
|
2349
2349
|
}
|
2350
2350
|
|
2351
2351
|
export namespace CapabilityOffer {
|
@@ -2408,7 +2408,7 @@ export namespace account {
|
|
2408
2408
|
}
|
2409
2409
|
|
2410
2410
|
export interface OriginatingAddress {
|
2411
|
-
address_map: table.Table<
|
2411
|
+
address_map: table.Table<string, string>;
|
2412
2412
|
}
|
2413
2413
|
|
2414
2414
|
export namespace OriginatingAddress {
|
@@ -2424,7 +2424,7 @@ export namespace account {
|
|
2424
2424
|
}
|
2425
2425
|
|
2426
2426
|
export interface RotationCapability {
|
2427
|
-
account:
|
2427
|
+
account: string;
|
2428
2428
|
}
|
2429
2429
|
|
2430
2430
|
export namespace RotationCapability {
|
@@ -2441,7 +2441,7 @@ export namespace account {
|
|
2441
2441
|
|
2442
2442
|
export interface RotationCapabilityOfferProofChallenge {
|
2443
2443
|
sequence_number: bigint;
|
2444
|
-
recipient_address:
|
2444
|
+
recipient_address: string;
|
2445
2445
|
}
|
2446
2446
|
|
2447
2447
|
export namespace RotationCapabilityOfferProofChallenge {
|
@@ -2460,8 +2460,8 @@ export namespace account {
|
|
2460
2460
|
export interface RotationCapabilityOfferProofChallengeV2 {
|
2461
2461
|
chain_id: number;
|
2462
2462
|
sequence_number: bigint;
|
2463
|
-
source_address:
|
2464
|
-
recipient_address:
|
2463
|
+
source_address: string;
|
2464
|
+
recipient_address: string;
|
2465
2465
|
}
|
2466
2466
|
|
2467
2467
|
export namespace RotationCapabilityOfferProofChallengeV2 {
|
@@ -2479,8 +2479,8 @@ export namespace account {
|
|
2479
2479
|
|
2480
2480
|
export interface RotationProofChallenge {
|
2481
2481
|
sequence_number: bigint;
|
2482
|
-
originator:
|
2483
|
-
current_auth_key:
|
2482
|
+
originator: string;
|
2483
|
+
current_auth_key: string;
|
2484
2484
|
new_public_key: string;
|
2485
2485
|
}
|
2486
2486
|
|
@@ -2497,7 +2497,7 @@ export namespace account {
|
|
2497
2497
|
}
|
2498
2498
|
|
2499
2499
|
export interface SignerCapability {
|
2500
|
-
account:
|
2500
|
+
account: string;
|
2501
2501
|
}
|
2502
2502
|
|
2503
2503
|
export namespace SignerCapability {
|
@@ -2514,7 +2514,7 @@ export namespace account {
|
|
2514
2514
|
|
2515
2515
|
export interface SignerCapabilityOfferProofChallenge {
|
2516
2516
|
sequence_number: bigint;
|
2517
|
-
recipient_address:
|
2517
|
+
recipient_address: string;
|
2518
2518
|
}
|
2519
2519
|
|
2520
2520
|
export namespace SignerCapabilityOfferProofChallenge {
|
@@ -2532,8 +2532,8 @@ export namespace account {
|
|
2532
2532
|
|
2533
2533
|
export interface SignerCapabilityOfferProofChallengeV2 {
|
2534
2534
|
sequence_number: bigint;
|
2535
|
-
source_address:
|
2536
|
-
recipient_address:
|
2535
|
+
source_address: string;
|
2536
|
+
recipient_address: string;
|
2537
2537
|
}
|
2538
2538
|
|
2539
2539
|
export namespace SignerCapabilityOfferProofChallengeV2 {
|
@@ -2550,14 +2550,14 @@ export namespace account {
|
|
2550
2550
|
}
|
2551
2551
|
|
2552
2552
|
export interface OfferRotationCapabilityPayload
|
2553
|
-
extends TypedFunctionPayload<[string, number, string,
|
2554
|
-
arguments_decoded: [string, number, string,
|
2553
|
+
extends TypedFunctionPayload<[string, number, string, string]> {
|
2554
|
+
arguments_decoded: [string, number, string, string];
|
2555
2555
|
type_arguments: [];
|
2556
2556
|
}
|
2557
2557
|
|
2558
2558
|
export interface OfferSignerCapabilityPayload
|
2559
|
-
extends TypedFunctionPayload<[string, number, string,
|
2560
|
-
arguments_decoded: [string, number, string,
|
2559
|
+
extends TypedFunctionPayload<[string, number, string, string]> {
|
2560
|
+
arguments_decoded: [string, number, string, string];
|
2561
2561
|
type_arguments: [];
|
2562
2562
|
}
|
2563
2563
|
|
@@ -2574,14 +2574,14 @@ export namespace account {
|
|
2574
2574
|
}
|
2575
2575
|
|
2576
2576
|
export interface RevokeRotationCapabilityPayload
|
2577
|
-
extends TypedFunctionPayload<[
|
2578
|
-
arguments_decoded: [
|
2577
|
+
extends TypedFunctionPayload<[string]> {
|
2578
|
+
arguments_decoded: [string];
|
2579
2579
|
type_arguments: [];
|
2580
2580
|
}
|
2581
2581
|
|
2582
2582
|
export interface RevokeSignerCapabilityPayload
|
2583
|
-
extends TypedFunctionPayload<[
|
2584
|
-
arguments_decoded: [
|
2583
|
+
extends TypedFunctionPayload<[string]> {
|
2584
|
+
arguments_decoded: [string];
|
2585
2585
|
type_arguments: [];
|
2586
2586
|
}
|
2587
2587
|
|
@@ -2594,8 +2594,8 @@ export namespace account {
|
|
2594
2594
|
}
|
2595
2595
|
|
2596
2596
|
export interface RotateAuthenticationKeyWithRotationCapabilityPayload
|
2597
|
-
extends TypedFunctionPayload<[
|
2598
|
-
arguments_decoded: [
|
2597
|
+
extends TypedFunctionPayload<[string, number, string, string]> {
|
2598
|
+
arguments_decoded: [string, number, string, string];
|
2599
2599
|
type_arguments: [];
|
2600
2600
|
}
|
2601
2601
|
}
|
@@ -2669,7 +2669,7 @@ export namespace ed25519 {
|
|
2669
2669
|
|
2670
2670
|
export namespace genesis {
|
2671
2671
|
export interface AccountMap {
|
2672
|
-
account_address:
|
2672
|
+
account_address: string;
|
2673
2673
|
balance: bigint;
|
2674
2674
|
}
|
2675
2675
|
|
@@ -2684,11 +2684,11 @@ export namespace genesis {
|
|
2684
2684
|
}
|
2685
2685
|
|
2686
2686
|
export interface EmployeeAccountMap {
|
2687
|
-
accounts:
|
2687
|
+
accounts: string[];
|
2688
2688
|
validator: genesis.ValidatorConfigurationWithCommission;
|
2689
2689
|
vesting_schedule_numerator: bigint[];
|
2690
2690
|
vesting_schedule_denominator: bigint;
|
2691
|
-
beneficiary_resetter:
|
2691
|
+
beneficiary_resetter: string;
|
2692
2692
|
}
|
2693
2693
|
|
2694
2694
|
export namespace EmployeeAccountMap {
|
@@ -2704,9 +2704,9 @@ export namespace genesis {
|
|
2704
2704
|
}
|
2705
2705
|
|
2706
2706
|
export interface ValidatorConfiguration {
|
2707
|
-
owner_address:
|
2708
|
-
operator_address:
|
2709
|
-
voter_address:
|
2707
|
+
owner_address: string;
|
2708
|
+
operator_address: string;
|
2709
|
+
voter_address: string;
|
2710
2710
|
stake_amount: bigint;
|
2711
2711
|
consensus_pubkey: string;
|
2712
2712
|
proof_of_possession: string;
|
@@ -3251,7 +3251,7 @@ export class vesting extends AptosBaseProcessor {
|
|
3251
3251
|
|
3252
3252
|
export namespace vesting {
|
3253
3253
|
export interface AdminStore {
|
3254
|
-
vesting_contracts:
|
3254
|
+
vesting_contracts: string[];
|
3255
3255
|
nonce: bigint;
|
3256
3256
|
create_events: event.EventHandle<vesting.CreateVestingContractEvent>;
|
3257
3257
|
}
|
@@ -3267,8 +3267,8 @@ export namespace vesting {
|
|
3267
3267
|
}
|
3268
3268
|
|
3269
3269
|
export interface AdminWithdrawEvent {
|
3270
|
-
admin:
|
3271
|
-
vesting_contract_address:
|
3270
|
+
admin: string;
|
3271
|
+
vesting_contract_address: string;
|
3272
3272
|
amount: bigint;
|
3273
3273
|
}
|
3274
3274
|
|
@@ -3291,12 +3291,12 @@ export namespace vesting {
|
|
3291
3291
|
}
|
3292
3292
|
|
3293
3293
|
export interface CreateVestingContractEvent {
|
3294
|
-
operator:
|
3295
|
-
voter:
|
3294
|
+
operator: string;
|
3295
|
+
voter: string;
|
3296
3296
|
grant_amount: bigint;
|
3297
|
-
withdrawal_address:
|
3298
|
-
vesting_contract_address:
|
3299
|
-
staking_pool_address:
|
3297
|
+
withdrawal_address: string;
|
3298
|
+
vesting_contract_address: string;
|
3299
|
+
staking_pool_address: string;
|
3300
3300
|
commission_percentage: bigint;
|
3301
3301
|
}
|
3302
3302
|
|
@@ -3319,8 +3319,8 @@ export namespace vesting {
|
|
3319
3319
|
}
|
3320
3320
|
|
3321
3321
|
export interface DistributeEvent {
|
3322
|
-
admin:
|
3323
|
-
vesting_contract_address:
|
3322
|
+
admin: string;
|
3323
|
+
vesting_contract_address: string;
|
3324
3324
|
amount: bigint;
|
3325
3325
|
}
|
3326
3326
|
|
@@ -3343,9 +3343,9 @@ export namespace vesting {
|
|
3343
3343
|
}
|
3344
3344
|
|
3345
3345
|
export interface ResetLockupEvent {
|
3346
|
-
admin:
|
3347
|
-
vesting_contract_address:
|
3348
|
-
staking_pool_address:
|
3346
|
+
admin: string;
|
3347
|
+
vesting_contract_address: string;
|
3348
|
+
staking_pool_address: string;
|
3349
3349
|
new_lockup_expiration_secs: bigint;
|
3350
3350
|
}
|
3351
3351
|
|
@@ -3368,11 +3368,11 @@ export namespace vesting {
|
|
3368
3368
|
}
|
3369
3369
|
|
3370
3370
|
export interface SetBeneficiaryEvent {
|
3371
|
-
admin:
|
3372
|
-
vesting_contract_address:
|
3373
|
-
shareholder:
|
3374
|
-
old_beneficiary:
|
3375
|
-
new_beneficiary:
|
3371
|
+
admin: string;
|
3372
|
+
vesting_contract_address: string;
|
3373
|
+
shareholder: string;
|
3374
|
+
old_beneficiary: string;
|
3375
|
+
new_beneficiary: string;
|
3376
3376
|
}
|
3377
3377
|
|
3378
3378
|
export namespace SetBeneficiaryEvent {
|
@@ -3394,9 +3394,9 @@ export namespace vesting {
|
|
3394
3394
|
}
|
3395
3395
|
|
3396
3396
|
export interface StakingInfo {
|
3397
|
-
pool_address:
|
3398
|
-
operator:
|
3399
|
-
voter:
|
3397
|
+
pool_address: string;
|
3398
|
+
operator: string;
|
3399
|
+
voter: string;
|
3400
3400
|
commission_percentage: bigint;
|
3401
3401
|
}
|
3402
3402
|
|
@@ -3411,8 +3411,8 @@ export namespace vesting {
|
|
3411
3411
|
}
|
3412
3412
|
|
3413
3413
|
export interface TerminateEvent {
|
3414
|
-
admin:
|
3415
|
-
vesting_contract_address:
|
3414
|
+
admin: string;
|
3415
|
+
vesting_contract_address: string;
|
3416
3416
|
}
|
3417
3417
|
|
3418
3418
|
export namespace TerminateEvent {
|
@@ -3432,9 +3432,9 @@ export namespace vesting {
|
|
3432
3432
|
}
|
3433
3433
|
|
3434
3434
|
export interface UnlockRewardsEvent {
|
3435
|
-
admin:
|
3436
|
-
vesting_contract_address:
|
3437
|
-
staking_pool_address:
|
3435
|
+
admin: string;
|
3436
|
+
vesting_contract_address: string;
|
3437
|
+
staking_pool_address: string;
|
3438
3438
|
amount: bigint;
|
3439
3439
|
}
|
3440
3440
|
|
@@ -3457,11 +3457,11 @@ export namespace vesting {
|
|
3457
3457
|
}
|
3458
3458
|
|
3459
3459
|
export interface UpdateOperatorEvent {
|
3460
|
-
admin:
|
3461
|
-
vesting_contract_address:
|
3462
|
-
staking_pool_address:
|
3463
|
-
old_operator:
|
3464
|
-
new_operator:
|
3460
|
+
admin: string;
|
3461
|
+
vesting_contract_address: string;
|
3462
|
+
staking_pool_address: string;
|
3463
|
+
old_operator: string;
|
3464
|
+
new_operator: string;
|
3465
3465
|
commission_percentage: bigint;
|
3466
3466
|
}
|
3467
3467
|
|
@@ -3484,11 +3484,11 @@ export namespace vesting {
|
|
3484
3484
|
}
|
3485
3485
|
|
3486
3486
|
export interface UpdateVoterEvent {
|
3487
|
-
admin:
|
3488
|
-
vesting_contract_address:
|
3489
|
-
staking_pool_address:
|
3490
|
-
old_voter:
|
3491
|
-
new_voter:
|
3487
|
+
admin: string;
|
3488
|
+
vesting_contract_address: string;
|
3489
|
+
staking_pool_address: string;
|
3490
|
+
old_voter: string;
|
3491
|
+
new_voter: string;
|
3492
3492
|
}
|
3493
3493
|
|
3494
3494
|
export namespace UpdateVoterEvent {
|
@@ -3510,9 +3510,9 @@ export namespace vesting {
|
|
3510
3510
|
}
|
3511
3511
|
|
3512
3512
|
export interface VestEvent {
|
3513
|
-
admin:
|
3514
|
-
vesting_contract_address:
|
3515
|
-
staking_pool_address:
|
3513
|
+
admin: string;
|
3514
|
+
vesting_contract_address: string;
|
3515
|
+
staking_pool_address: string;
|
3516
3516
|
period_vested: bigint;
|
3517
3517
|
amount: bigint;
|
3518
3518
|
}
|
@@ -3533,7 +3533,7 @@ export namespace vesting {
|
|
3533
3533
|
}
|
3534
3534
|
|
3535
3535
|
export interface VestingAccountManagement {
|
3536
|
-
roles: simple_map.SimpleMap<string,
|
3536
|
+
roles: simple_map.SimpleMap<string, string>;
|
3537
3537
|
}
|
3538
3538
|
|
3539
3539
|
export namespace VestingAccountManagement {
|
@@ -3550,11 +3550,11 @@ export namespace vesting {
|
|
3550
3550
|
|
3551
3551
|
export interface VestingContract {
|
3552
3552
|
state: bigint;
|
3553
|
-
admin:
|
3553
|
+
admin: string;
|
3554
3554
|
grant_pool: pool_u64.Pool;
|
3555
|
-
beneficiaries: simple_map.SimpleMap<
|
3555
|
+
beneficiaries: simple_map.SimpleMap<string, string>;
|
3556
3556
|
vesting_schedule: vesting.VestingSchedule;
|
3557
|
-
withdrawal_address:
|
3557
|
+
withdrawal_address: string;
|
3558
3558
|
staking: vesting.StakingInfo;
|
3559
3559
|
remaining_grant: bigint;
|
3560
3560
|
signer_cap: account.SignerCapability;
|
@@ -3600,95 +3600,93 @@ export namespace vesting {
|
|
3600
3600
|
}
|
3601
3601
|
}
|
3602
3602
|
|
3603
|
-
export interface AdminWithdrawPayload
|
3604
|
-
|
3605
|
-
arguments_decoded: [Address];
|
3603
|
+
export interface AdminWithdrawPayload extends TypedFunctionPayload<[string]> {
|
3604
|
+
arguments_decoded: [string];
|
3606
3605
|
type_arguments: [];
|
3607
3606
|
}
|
3608
3607
|
|
3609
|
-
export interface DistributePayload extends TypedFunctionPayload<[
|
3610
|
-
arguments_decoded: [
|
3608
|
+
export interface DistributePayload extends TypedFunctionPayload<[string]> {
|
3609
|
+
arguments_decoded: [string];
|
3611
3610
|
type_arguments: [];
|
3612
3611
|
}
|
3613
3612
|
|
3614
3613
|
export interface DistributeManyPayload
|
3615
|
-
extends TypedFunctionPayload<[
|
3616
|
-
arguments_decoded: [
|
3614
|
+
extends TypedFunctionPayload<[string[]]> {
|
3615
|
+
arguments_decoded: [string[]];
|
3617
3616
|
type_arguments: [];
|
3618
3617
|
}
|
3619
3618
|
|
3620
3619
|
export interface ResetBeneficiaryPayload
|
3621
|
-
extends TypedFunctionPayload<[
|
3622
|
-
arguments_decoded: [
|
3620
|
+
extends TypedFunctionPayload<[string, string]> {
|
3621
|
+
arguments_decoded: [string, string];
|
3623
3622
|
type_arguments: [];
|
3624
3623
|
}
|
3625
3624
|
|
3626
|
-
export interface ResetLockupPayload extends TypedFunctionPayload<[
|
3627
|
-
arguments_decoded: [
|
3625
|
+
export interface ResetLockupPayload extends TypedFunctionPayload<[string]> {
|
3626
|
+
arguments_decoded: [string];
|
3628
3627
|
type_arguments: [];
|
3629
3628
|
}
|
3630
3629
|
|
3631
3630
|
export interface SetBeneficiaryPayload
|
3632
|
-
extends TypedFunctionPayload<[
|
3633
|
-
arguments_decoded: [
|
3631
|
+
extends TypedFunctionPayload<[string, string, string]> {
|
3632
|
+
arguments_decoded: [string, string, string];
|
3634
3633
|
type_arguments: [];
|
3635
3634
|
}
|
3636
3635
|
|
3637
3636
|
export interface SetBeneficiaryResetterPayload
|
3638
|
-
extends TypedFunctionPayload<[
|
3639
|
-
arguments_decoded: [
|
3637
|
+
extends TypedFunctionPayload<[string, string]> {
|
3638
|
+
arguments_decoded: [string, string];
|
3640
3639
|
type_arguments: [];
|
3641
3640
|
}
|
3642
3641
|
|
3643
3642
|
export interface SetManagementRolePayload
|
3644
|
-
extends TypedFunctionPayload<[
|
3645
|
-
arguments_decoded: [
|
3643
|
+
extends TypedFunctionPayload<[string, string, string]> {
|
3644
|
+
arguments_decoded: [string, string, string];
|
3646
3645
|
type_arguments: [];
|
3647
3646
|
}
|
3648
3647
|
|
3649
3648
|
export interface TerminateVestingContractPayload
|
3650
|
-
extends TypedFunctionPayload<[
|
3651
|
-
arguments_decoded: [
|
3649
|
+
extends TypedFunctionPayload<[string]> {
|
3650
|
+
arguments_decoded: [string];
|
3652
3651
|
type_arguments: [];
|
3653
3652
|
}
|
3654
3653
|
|
3655
|
-
export interface UnlockRewardsPayload
|
3656
|
-
|
3657
|
-
arguments_decoded: [Address];
|
3654
|
+
export interface UnlockRewardsPayload extends TypedFunctionPayload<[string]> {
|
3655
|
+
arguments_decoded: [string];
|
3658
3656
|
type_arguments: [];
|
3659
3657
|
}
|
3660
3658
|
|
3661
3659
|
export interface UnlockRewardsManyPayload
|
3662
|
-
extends TypedFunctionPayload<[
|
3663
|
-
arguments_decoded: [
|
3660
|
+
extends TypedFunctionPayload<[string[]]> {
|
3661
|
+
arguments_decoded: [string[]];
|
3664
3662
|
type_arguments: [];
|
3665
3663
|
}
|
3666
3664
|
|
3667
3665
|
export interface UpdateOperatorPayload
|
3668
|
-
extends TypedFunctionPayload<[
|
3669
|
-
arguments_decoded: [
|
3666
|
+
extends TypedFunctionPayload<[string, string, bigint]> {
|
3667
|
+
arguments_decoded: [string, string, bigint];
|
3670
3668
|
type_arguments: [];
|
3671
3669
|
}
|
3672
3670
|
|
3673
3671
|
export interface UpdateOperatorWithSameCommissionPayload
|
3674
|
-
extends TypedFunctionPayload<[
|
3675
|
-
arguments_decoded: [
|
3672
|
+
extends TypedFunctionPayload<[string, string]> {
|
3673
|
+
arguments_decoded: [string, string];
|
3676
3674
|
type_arguments: [];
|
3677
3675
|
}
|
3678
3676
|
|
3679
3677
|
export interface UpdateVoterPayload
|
3680
|
-
extends TypedFunctionPayload<[
|
3681
|
-
arguments_decoded: [
|
3678
|
+
extends TypedFunctionPayload<[string, string]> {
|
3679
|
+
arguments_decoded: [string, string];
|
3682
3680
|
type_arguments: [];
|
3683
3681
|
}
|
3684
3682
|
|
3685
|
-
export interface VestPayload extends TypedFunctionPayload<[
|
3686
|
-
arguments_decoded: [
|
3683
|
+
export interface VestPayload extends TypedFunctionPayload<[string]> {
|
3684
|
+
arguments_decoded: [string];
|
3687
3685
|
type_arguments: [];
|
3688
3686
|
}
|
3689
3687
|
|
3690
|
-
export interface VestManyPayload extends TypedFunctionPayload<[
|
3691
|
-
arguments_decoded: [
|
3688
|
+
export interface VestManyPayload extends TypedFunctionPayload<[string[]]> {
|
3689
|
+
arguments_decoded: [string[]];
|
3692
3690
|
type_arguments: [];
|
3693
3691
|
}
|
3694
3692
|
}
|
@@ -3826,8 +3824,8 @@ export namespace pool_u64 {
|
|
3826
3824
|
shareholders_limit: bigint;
|
3827
3825
|
total_coins: bigint;
|
3828
3826
|
total_shares: bigint;
|
3829
|
-
shares: simple_map.SimpleMap<
|
3830
|
-
shareholders:
|
3827
|
+
shares: simple_map.SimpleMap<string, bigint>;
|
3828
|
+
shareholders: string[];
|
3831
3829
|
scaling_factor: bigint;
|
3832
3830
|
}
|
3833
3831
|
|
@@ -3894,7 +3892,7 @@ export namespace timestamp {
|
|
3894
3892
|
|
3895
3893
|
export namespace type_info {
|
3896
3894
|
export interface TypeInfo {
|
3897
|
-
account_address:
|
3895
|
+
account_address: string;
|
3898
3896
|
module_name: string;
|
3899
3897
|
struct_name: string;
|
3900
3898
|
}
|
@@ -3912,8 +3910,8 @@ export namespace type_info {
|
|
3912
3910
|
|
3913
3911
|
export namespace aggregator {
|
3914
3912
|
export interface Aggregator {
|
3915
|
-
handle:
|
3916
|
-
key:
|
3913
|
+
handle: string;
|
3914
|
+
key: string;
|
3917
3915
|
limit: bigint;
|
3918
3916
|
}
|
3919
3917
|
|
@@ -4012,7 +4010,7 @@ export namespace aptos_coin {
|
|
4012
4010
|
}
|
4013
4011
|
|
4014
4012
|
export interface DelegatedMintCapability {
|
4015
|
-
to:
|
4013
|
+
to: string;
|
4016
4014
|
}
|
4017
4015
|
|
4018
4016
|
export namespace DelegatedMintCapability {
|
@@ -4061,13 +4059,13 @@ export namespace aptos_coin {
|
|
4061
4059
|
}
|
4062
4060
|
|
4063
4061
|
export interface DelegateMintCapabilityPayload
|
4064
|
-
extends TypedFunctionPayload<[
|
4065
|
-
arguments_decoded: [
|
4062
|
+
extends TypedFunctionPayload<[string, string]> {
|
4063
|
+
arguments_decoded: [string, string];
|
4066
4064
|
type_arguments: [];
|
4067
4065
|
}
|
4068
4066
|
|
4069
|
-
export interface MintPayload extends TypedFunctionPayload<[
|
4070
|
-
arguments_decoded: [
|
4067
|
+
export interface MintPayload extends TypedFunctionPayload<[string, bigint]> {
|
4068
|
+
arguments_decoded: [string, bigint];
|
4071
4069
|
type_arguments: [];
|
4072
4070
|
}
|
4073
4071
|
}
|
@@ -4113,7 +4111,7 @@ export namespace bit_vector {
|
|
4113
4111
|
|
4114
4112
|
export namespace capability {
|
4115
4113
|
export interface Cap<T0> {
|
4116
|
-
root:
|
4114
|
+
root: string;
|
4117
4115
|
}
|
4118
4116
|
|
4119
4117
|
export namespace Cap {
|
@@ -4129,7 +4127,7 @@ export namespace capability {
|
|
4129
4127
|
}
|
4130
4128
|
|
4131
4129
|
export interface CapDelegateState<T0> {
|
4132
|
-
root:
|
4130
|
+
root: string;
|
4133
4131
|
}
|
4134
4132
|
|
4135
4133
|
export namespace CapDelegateState {
|
@@ -4147,7 +4145,7 @@ export namespace capability {
|
|
4147
4145
|
}
|
4148
4146
|
|
4149
4147
|
export interface CapState<T0> {
|
4150
|
-
delegates:
|
4148
|
+
delegates: string[];
|
4151
4149
|
}
|
4152
4150
|
|
4153
4151
|
export namespace CapState {
|
@@ -4163,7 +4161,7 @@ export namespace capability {
|
|
4163
4161
|
}
|
4164
4162
|
|
4165
4163
|
export interface LinearCap<T0> {
|
4166
|
-
root:
|
4164
|
+
root: string;
|
4167
4165
|
}
|
4168
4166
|
|
4169
4167
|
export namespace LinearCap {
|
@@ -4559,8 +4557,8 @@ export namespace managed_coin {
|
|
4559
4557
|
}
|
4560
4558
|
|
4561
4559
|
export interface MintPayload<T0 = any>
|
4562
|
-
extends TypedFunctionPayload<[
|
4563
|
-
arguments_decoded: [
|
4560
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
4561
|
+
arguments_decoded: [string, bigint];
|
4564
4562
|
type_arguments: [string];
|
4565
4563
|
}
|
4566
4564
|
|
@@ -4812,20 +4810,19 @@ export namespace aptos_account {
|
|
4812
4810
|
}
|
4813
4811
|
|
4814
4812
|
export interface BatchTransferPayload
|
4815
|
-
extends TypedFunctionPayload<[
|
4816
|
-
arguments_decoded: [
|
4813
|
+
extends TypedFunctionPayload<[string[], bigint[]]> {
|
4814
|
+
arguments_decoded: [string[], bigint[]];
|
4817
4815
|
type_arguments: [];
|
4818
4816
|
}
|
4819
4817
|
|
4820
4818
|
export interface BatchTransferCoinsPayload<T0 = any>
|
4821
|
-
extends TypedFunctionPayload<[
|
4822
|
-
arguments_decoded: [
|
4819
|
+
extends TypedFunctionPayload<[string[], bigint[]]> {
|
4820
|
+
arguments_decoded: [string[], bigint[]];
|
4823
4821
|
type_arguments: [string];
|
4824
4822
|
}
|
4825
4823
|
|
4826
|
-
export interface CreateAccountPayload
|
4827
|
-
|
4828
|
-
arguments_decoded: [Address];
|
4824
|
+
export interface CreateAccountPayload extends TypedFunctionPayload<[string]> {
|
4825
|
+
arguments_decoded: [string];
|
4829
4826
|
type_arguments: [];
|
4830
4827
|
}
|
4831
4828
|
|
@@ -4836,14 +4833,14 @@ export namespace aptos_account {
|
|
4836
4833
|
}
|
4837
4834
|
|
4838
4835
|
export interface TransferPayload
|
4839
|
-
extends TypedFunctionPayload<[
|
4840
|
-
arguments_decoded: [
|
4836
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
4837
|
+
arguments_decoded: [string, bigint];
|
4841
4838
|
type_arguments: [];
|
4842
4839
|
}
|
4843
4840
|
|
4844
4841
|
export interface TransferCoinsPayload<T0 = any>
|
4845
|
-
extends TypedFunctionPayload<[
|
4846
|
-
arguments_decoded: [
|
4842
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
4843
|
+
arguments_decoded: [string, bigint];
|
4847
4844
|
type_arguments: [string];
|
4848
4845
|
}
|
4849
4846
|
}
|
@@ -5076,50 +5073,50 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
5076
5073
|
|
5077
5074
|
export namespace staking_proxy {
|
5078
5075
|
export interface SetOperatorPayload
|
5079
|
-
extends TypedFunctionPayload<[
|
5080
|
-
arguments_decoded: [
|
5076
|
+
extends TypedFunctionPayload<[string, string]> {
|
5077
|
+
arguments_decoded: [string, string];
|
5081
5078
|
type_arguments: [];
|
5082
5079
|
}
|
5083
5080
|
|
5084
5081
|
export interface SetStakePoolOperatorPayload
|
5085
|
-
extends TypedFunctionPayload<[
|
5086
|
-
arguments_decoded: [
|
5082
|
+
extends TypedFunctionPayload<[string]> {
|
5083
|
+
arguments_decoded: [string];
|
5087
5084
|
type_arguments: [];
|
5088
5085
|
}
|
5089
5086
|
|
5090
5087
|
export interface SetStakePoolVoterPayload
|
5091
|
-
extends TypedFunctionPayload<[
|
5092
|
-
arguments_decoded: [
|
5088
|
+
extends TypedFunctionPayload<[string]> {
|
5089
|
+
arguments_decoded: [string];
|
5093
5090
|
type_arguments: [];
|
5094
5091
|
}
|
5095
5092
|
|
5096
5093
|
export interface SetStakingContractOperatorPayload
|
5097
|
-
extends TypedFunctionPayload<[
|
5098
|
-
arguments_decoded: [
|
5094
|
+
extends TypedFunctionPayload<[string, string]> {
|
5095
|
+
arguments_decoded: [string, string];
|
5099
5096
|
type_arguments: [];
|
5100
5097
|
}
|
5101
5098
|
|
5102
5099
|
export interface SetStakingContractVoterPayload
|
5103
|
-
extends TypedFunctionPayload<[
|
5104
|
-
arguments_decoded: [
|
5100
|
+
extends TypedFunctionPayload<[string, string]> {
|
5101
|
+
arguments_decoded: [string, string];
|
5105
5102
|
type_arguments: [];
|
5106
5103
|
}
|
5107
5104
|
|
5108
5105
|
export interface SetVestingContractOperatorPayload
|
5109
|
-
extends TypedFunctionPayload<[
|
5110
|
-
arguments_decoded: [
|
5106
|
+
extends TypedFunctionPayload<[string, string]> {
|
5107
|
+
arguments_decoded: [string, string];
|
5111
5108
|
type_arguments: [];
|
5112
5109
|
}
|
5113
5110
|
|
5114
5111
|
export interface SetVestingContractVoterPayload
|
5115
|
-
extends TypedFunctionPayload<[
|
5116
|
-
arguments_decoded: [
|
5112
|
+
extends TypedFunctionPayload<[string, string]> {
|
5113
|
+
arguments_decoded: [string, string];
|
5117
5114
|
type_arguments: [];
|
5118
5115
|
}
|
5119
5116
|
|
5120
5117
|
export interface SetVoterPayload
|
5121
|
-
extends TypedFunctionPayload<[
|
5122
|
-
arguments_decoded: [
|
5118
|
+
extends TypedFunctionPayload<[string, string]> {
|
5119
|
+
arguments_decoded: [string, string];
|
5123
5120
|
type_arguments: [];
|
5124
5121
|
}
|
5125
5122
|
}
|
@@ -5438,8 +5435,8 @@ export class delegation_pool extends AptosBaseProcessor {
|
|
5438
5435
|
|
5439
5436
|
export namespace delegation_pool {
|
5440
5437
|
export interface AddStakeEvent {
|
5441
|
-
pool_address:
|
5442
|
-
delegator_address:
|
5438
|
+
pool_address: string;
|
5439
|
+
delegator_address: string;
|
5443
5440
|
amount_added: bigint;
|
5444
5441
|
add_stake_fee: bigint;
|
5445
5442
|
}
|
@@ -5468,7 +5465,7 @@ export namespace delegation_pool {
|
|
5468
5465
|
pool_u64_unbound.Pool
|
5469
5466
|
>;
|
5470
5467
|
pending_withdrawals: table.Table<
|
5471
|
-
|
5468
|
+
string,
|
5472
5469
|
delegation_pool.ObservedLockupCycle
|
5473
5470
|
>;
|
5474
5471
|
stake_pool_signer_cap: account.SignerCapability;
|
@@ -5492,7 +5489,7 @@ export namespace delegation_pool {
|
|
5492
5489
|
}
|
5493
5490
|
|
5494
5491
|
export interface DelegationPoolOwnership {
|
5495
|
-
pool_address:
|
5492
|
+
pool_address: string;
|
5496
5493
|
}
|
5497
5494
|
|
5498
5495
|
export namespace DelegationPoolOwnership {
|
@@ -5508,8 +5505,8 @@ export namespace delegation_pool {
|
|
5508
5505
|
}
|
5509
5506
|
|
5510
5507
|
export interface DistributeCommissionEvent {
|
5511
|
-
pool_address:
|
5512
|
-
operator:
|
5508
|
+
pool_address: string;
|
5509
|
+
operator: string;
|
5513
5510
|
commission_active: bigint;
|
5514
5511
|
commission_pending_inactive: bigint;
|
5515
5512
|
}
|
@@ -5549,8 +5546,8 @@ export namespace delegation_pool {
|
|
5549
5546
|
}
|
5550
5547
|
|
5551
5548
|
export interface ReactivateStakeEvent {
|
5552
|
-
pool_address:
|
5553
|
-
delegator_address:
|
5549
|
+
pool_address: string;
|
5550
|
+
delegator_address: string;
|
5554
5551
|
amount_reactivated: bigint;
|
5555
5552
|
}
|
5556
5553
|
|
@@ -5573,8 +5570,8 @@ export namespace delegation_pool {
|
|
5573
5570
|
}
|
5574
5571
|
|
5575
5572
|
export interface UnlockStakeEvent {
|
5576
|
-
pool_address:
|
5577
|
-
delegator_address:
|
5573
|
+
pool_address: string;
|
5574
|
+
delegator_address: string;
|
5578
5575
|
amount_unlocked: bigint;
|
5579
5576
|
}
|
5580
5577
|
|
@@ -5597,8 +5594,8 @@ export namespace delegation_pool {
|
|
5597
5594
|
}
|
5598
5595
|
|
5599
5596
|
export interface WithdrawStakeEvent {
|
5600
|
-
pool_address:
|
5601
|
-
delegator_address:
|
5597
|
+
pool_address: string;
|
5598
|
+
delegator_address: string;
|
5602
5599
|
amount_withdrawn: bigint;
|
5603
5600
|
}
|
5604
5601
|
|
@@ -5621,8 +5618,8 @@ export namespace delegation_pool {
|
|
5621
5618
|
}
|
5622
5619
|
|
5623
5620
|
export interface AddStakePayload
|
5624
|
-
extends TypedFunctionPayload<[
|
5625
|
-
arguments_decoded: [
|
5621
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
5622
|
+
arguments_decoded: [string, bigint];
|
5626
5623
|
type_arguments: [];
|
5627
5624
|
}
|
5628
5625
|
|
@@ -5633,37 +5630,37 @@ export namespace delegation_pool {
|
|
5633
5630
|
}
|
5634
5631
|
|
5635
5632
|
export interface ReactivateStakePayload
|
5636
|
-
extends TypedFunctionPayload<[
|
5637
|
-
arguments_decoded: [
|
5633
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
5634
|
+
arguments_decoded: [string, bigint];
|
5638
5635
|
type_arguments: [];
|
5639
5636
|
}
|
5640
5637
|
|
5641
5638
|
export interface SetDelegatedVoterPayload
|
5642
|
-
extends TypedFunctionPayload<[
|
5643
|
-
arguments_decoded: [
|
5639
|
+
extends TypedFunctionPayload<[string]> {
|
5640
|
+
arguments_decoded: [string];
|
5644
5641
|
type_arguments: [];
|
5645
5642
|
}
|
5646
5643
|
|
5647
|
-
export interface SetOperatorPayload extends TypedFunctionPayload<[
|
5648
|
-
arguments_decoded: [
|
5644
|
+
export interface SetOperatorPayload extends TypedFunctionPayload<[string]> {
|
5645
|
+
arguments_decoded: [string];
|
5649
5646
|
type_arguments: [];
|
5650
5647
|
}
|
5651
5648
|
|
5652
5649
|
export interface SynchronizeDelegationPoolPayload
|
5653
|
-
extends TypedFunctionPayload<[
|
5654
|
-
arguments_decoded: [
|
5650
|
+
extends TypedFunctionPayload<[string]> {
|
5651
|
+
arguments_decoded: [string];
|
5655
5652
|
type_arguments: [];
|
5656
5653
|
}
|
5657
5654
|
|
5658
5655
|
export interface UnlockPayload
|
5659
|
-
extends TypedFunctionPayload<[
|
5660
|
-
arguments_decoded: [
|
5656
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
5657
|
+
arguments_decoded: [string, bigint];
|
5661
5658
|
type_arguments: [];
|
5662
5659
|
}
|
5663
5660
|
|
5664
5661
|
export interface WithdrawPayload
|
5665
|
-
extends TypedFunctionPayload<[
|
5666
|
-
arguments_decoded: [
|
5662
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
5663
|
+
arguments_decoded: [string, bigint];
|
5667
5664
|
type_arguments: [];
|
5668
5665
|
}
|
5669
5666
|
}
|
@@ -5775,7 +5772,7 @@ export namespace transaction_fee {
|
|
5775
5772
|
|
5776
5773
|
export interface CollectedFeesPerBlock {
|
5777
5774
|
amount: coin.AggregatableCoin<aptos_coin.AptosCoin>;
|
5778
|
-
proposer: option.Option<
|
5775
|
+
proposer: option.Option<string>;
|
5779
5776
|
burn_percentage: number;
|
5780
5777
|
}
|
5781
5778
|
|
@@ -5951,8 +5948,8 @@ export namespace aptos_governance {
|
|
5951
5948
|
}
|
5952
5949
|
|
5953
5950
|
export interface CreateProposalEvent {
|
5954
|
-
proposer:
|
5955
|
-
stake_pool:
|
5951
|
+
proposer: string;
|
5952
|
+
stake_pool: string;
|
5956
5953
|
proposal_id: bigint;
|
5957
5954
|
execution_hash: string;
|
5958
5955
|
proposal_metadata: simple_map.SimpleMap<string, string>;
|
@@ -6013,7 +6010,7 @@ export namespace aptos_governance {
|
|
6013
6010
|
}
|
6014
6011
|
|
6015
6012
|
export interface GovernanceResponsbility {
|
6016
|
-
signer_caps: simple_map.SimpleMap<
|
6013
|
+
signer_caps: simple_map.SimpleMap<string, account.SignerCapability>;
|
6017
6014
|
}
|
6018
6015
|
|
6019
6016
|
export namespace GovernanceResponsbility {
|
@@ -6029,7 +6026,7 @@ export namespace aptos_governance {
|
|
6029
6026
|
}
|
6030
6027
|
|
6031
6028
|
export interface RecordKey {
|
6032
|
-
stake_pool:
|
6029
|
+
stake_pool: string;
|
6033
6030
|
proposal_id: bigint;
|
6034
6031
|
}
|
6035
6032
|
|
@@ -6069,8 +6066,8 @@ export namespace aptos_governance {
|
|
6069
6066
|
|
6070
6067
|
export interface VoteEvent {
|
6071
6068
|
proposal_id: bigint;
|
6072
|
-
voter:
|
6073
|
-
stake_pool:
|
6069
|
+
voter: string;
|
6070
|
+
stake_pool: string;
|
6074
6071
|
num_votes: bigint;
|
6075
6072
|
should_pass: Boolean;
|
6076
6073
|
}
|
@@ -6111,20 +6108,20 @@ export namespace aptos_governance {
|
|
6111
6108
|
}
|
6112
6109
|
|
6113
6110
|
export interface CreateProposalPayload
|
6114
|
-
extends TypedFunctionPayload<[
|
6115
|
-
arguments_decoded: [
|
6111
|
+
extends TypedFunctionPayload<[string, string, string, string]> {
|
6112
|
+
arguments_decoded: [string, string, string, string];
|
6116
6113
|
type_arguments: [];
|
6117
6114
|
}
|
6118
6115
|
|
6119
6116
|
export interface CreateProposalV2Payload
|
6120
|
-
extends TypedFunctionPayload<[
|
6121
|
-
arguments_decoded: [
|
6117
|
+
extends TypedFunctionPayload<[string, string, string, string, Boolean]> {
|
6118
|
+
arguments_decoded: [string, string, string, string, Boolean];
|
6122
6119
|
type_arguments: [];
|
6123
6120
|
}
|
6124
6121
|
|
6125
6122
|
export interface VotePayload
|
6126
|
-
extends TypedFunctionPayload<[
|
6127
|
-
arguments_decoded: [
|
6123
|
+
extends TypedFunctionPayload<[string, bigint, Boolean]> {
|
6124
|
+
arguments_decoded: [string, bigint, Boolean];
|
6128
6125
|
type_arguments: [];
|
6129
6126
|
}
|
6130
6127
|
}
|
@@ -6595,7 +6592,7 @@ export class multisig_account extends AptosBaseProcessor {
|
|
6595
6592
|
|
6596
6593
|
export namespace multisig_account {
|
6597
6594
|
export interface AddOwnersEvent {
|
6598
|
-
owners_added:
|
6595
|
+
owners_added: string[];
|
6599
6596
|
}
|
6600
6597
|
|
6601
6598
|
export namespace AddOwnersEvent {
|
@@ -6615,7 +6612,7 @@ export namespace multisig_account {
|
|
6615
6612
|
}
|
6616
6613
|
|
6617
6614
|
export interface CreateTransactionEvent {
|
6618
|
-
creator:
|
6615
|
+
creator: string;
|
6619
6616
|
sequence_number: bigint;
|
6620
6617
|
transaction: multisig_account.MultisigTransaction;
|
6621
6618
|
}
|
@@ -6641,7 +6638,7 @@ export namespace multisig_account {
|
|
6641
6638
|
export interface ExecuteRejectedTransactionEvent {
|
6642
6639
|
sequence_number: bigint;
|
6643
6640
|
num_rejections: bigint;
|
6644
|
-
executor:
|
6641
|
+
executor: string;
|
6645
6642
|
}
|
6646
6643
|
|
6647
6644
|
export namespace ExecuteRejectedTransactionEvent {
|
@@ -6703,7 +6700,7 @@ export namespace multisig_account {
|
|
6703
6700
|
}
|
6704
6701
|
|
6705
6702
|
export interface MultisigAccount {
|
6706
|
-
owners:
|
6703
|
+
owners: string[];
|
6707
6704
|
num_signatures_required: bigint;
|
6708
6705
|
transactions: table.Table<bigint, multisig_account.MultisigTransaction>;
|
6709
6706
|
last_executed_sequence_number: bigint;
|
@@ -6735,9 +6732,9 @@ export namespace multisig_account {
|
|
6735
6732
|
|
6736
6733
|
export interface MultisigAccountCreationMessage {
|
6737
6734
|
chain_id: number;
|
6738
|
-
account_address:
|
6735
|
+
account_address: string;
|
6739
6736
|
sequence_number: bigint;
|
6740
|
-
owners:
|
6737
|
+
owners: string[];
|
6741
6738
|
num_signatures_required: bigint;
|
6742
6739
|
}
|
6743
6740
|
|
@@ -6757,8 +6754,8 @@ export namespace multisig_account {
|
|
6757
6754
|
export interface MultisigTransaction {
|
6758
6755
|
payload: option.Option<string>;
|
6759
6756
|
payload_hash: option.Option<string>;
|
6760
|
-
votes: simple_map.SimpleMap<
|
6761
|
-
creator:
|
6757
|
+
votes: simple_map.SimpleMap<string, Boolean>;
|
6758
|
+
creator: string;
|
6762
6759
|
creation_time_secs: bigint;
|
6763
6760
|
}
|
6764
6761
|
|
@@ -6775,7 +6772,7 @@ export namespace multisig_account {
|
|
6775
6772
|
}
|
6776
6773
|
|
6777
6774
|
export interface RemoveOwnersEvent {
|
6778
|
-
owners_removed:
|
6775
|
+
owners_removed: string[];
|
6779
6776
|
}
|
6780
6777
|
|
6781
6778
|
export namespace RemoveOwnersEvent {
|
@@ -6797,7 +6794,7 @@ export namespace multisig_account {
|
|
6797
6794
|
}
|
6798
6795
|
|
6799
6796
|
export interface TransactionExecutionFailedEvent {
|
6800
|
-
executor:
|
6797
|
+
executor: string;
|
6801
6798
|
sequence_number: bigint;
|
6802
6799
|
transaction_payload: string;
|
6803
6800
|
num_approvals: bigint;
|
@@ -6824,7 +6821,7 @@ export namespace multisig_account {
|
|
6824
6821
|
}
|
6825
6822
|
|
6826
6823
|
export interface TransactionExecutionSucceededEvent {
|
6827
|
-
executor:
|
6824
|
+
executor: string;
|
6828
6825
|
sequence_number: bigint;
|
6829
6826
|
transaction_payload: string;
|
6830
6827
|
num_approvals: bigint;
|
@@ -6874,7 +6871,7 @@ export namespace multisig_account {
|
|
6874
6871
|
}
|
6875
6872
|
|
6876
6873
|
export interface VoteEvent {
|
6877
|
-
owner:
|
6874
|
+
owner: string;
|
6878
6875
|
sequence_number: bigint;
|
6879
6876
|
approved: Boolean;
|
6880
6877
|
}
|
@@ -6894,19 +6891,19 @@ export namespace multisig_account {
|
|
6894
6891
|
type_arguments: [];
|
6895
6892
|
}
|
6896
6893
|
|
6897
|
-
export interface AddOwnerPayload extends TypedFunctionPayload<[
|
6898
|
-
arguments_decoded: [
|
6894
|
+
export interface AddOwnerPayload extends TypedFunctionPayload<[string]> {
|
6895
|
+
arguments_decoded: [string];
|
6899
6896
|
type_arguments: [];
|
6900
6897
|
}
|
6901
6898
|
|
6902
|
-
export interface AddOwnersPayload extends TypedFunctionPayload<[
|
6903
|
-
arguments_decoded: [
|
6899
|
+
export interface AddOwnersPayload extends TypedFunctionPayload<[string[]]> {
|
6900
|
+
arguments_decoded: [string[]];
|
6904
6901
|
type_arguments: [];
|
6905
6902
|
}
|
6906
6903
|
|
6907
6904
|
export interface ApproveTransactionPayload
|
6908
|
-
extends TypedFunctionPayload<[
|
6909
|
-
arguments_decoded: [
|
6905
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
6906
|
+
arguments_decoded: [string, bigint];
|
6910
6907
|
type_arguments: [];
|
6911
6908
|
}
|
6912
6909
|
|
@@ -6917,24 +6914,24 @@ export namespace multisig_account {
|
|
6917
6914
|
}
|
6918
6915
|
|
6919
6916
|
export interface CreateTransactionPayload
|
6920
|
-
extends TypedFunctionPayload<[
|
6921
|
-
arguments_decoded: [
|
6917
|
+
extends TypedFunctionPayload<[string, string]> {
|
6918
|
+
arguments_decoded: [string, string];
|
6922
6919
|
type_arguments: [];
|
6923
6920
|
}
|
6924
6921
|
|
6925
6922
|
export interface CreateTransactionWithHashPayload
|
6926
|
-
extends TypedFunctionPayload<[
|
6927
|
-
arguments_decoded: [
|
6923
|
+
extends TypedFunctionPayload<[string, string]> {
|
6924
|
+
arguments_decoded: [string, string];
|
6928
6925
|
type_arguments: [];
|
6929
6926
|
}
|
6930
6927
|
|
6931
6928
|
export interface CreateWithExistingAccountPayload
|
6932
6929
|
extends TypedFunctionPayload<
|
6933
|
-
[
|
6930
|
+
[string, string[], bigint, number, string, string, string[], string[]]
|
6934
6931
|
> {
|
6935
6932
|
arguments_decoded: [
|
6936
|
-
|
6937
|
-
|
6933
|
+
string,
|
6934
|
+
string[],
|
6938
6935
|
bigint,
|
6939
6936
|
number,
|
6940
6937
|
string,
|
@@ -6946,31 +6943,31 @@ export namespace multisig_account {
|
|
6946
6943
|
}
|
6947
6944
|
|
6948
6945
|
export interface CreateWithOwnersPayload
|
6949
|
-
extends TypedFunctionPayload<[
|
6950
|
-
arguments_decoded: [
|
6946
|
+
extends TypedFunctionPayload<[string[], bigint, string[], string[]]> {
|
6947
|
+
arguments_decoded: [string[], bigint, string[], string[]];
|
6951
6948
|
type_arguments: [];
|
6952
6949
|
}
|
6953
6950
|
|
6954
6951
|
export interface ExecuteRejectedTransactionPayload
|
6955
|
-
extends TypedFunctionPayload<[
|
6956
|
-
arguments_decoded: [
|
6952
|
+
extends TypedFunctionPayload<[string]> {
|
6953
|
+
arguments_decoded: [string];
|
6957
6954
|
type_arguments: [];
|
6958
6955
|
}
|
6959
6956
|
|
6960
6957
|
export interface RejectTransactionPayload
|
6961
|
-
extends TypedFunctionPayload<[
|
6962
|
-
arguments_decoded: [
|
6958
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
6959
|
+
arguments_decoded: [string, bigint];
|
6963
6960
|
type_arguments: [];
|
6964
6961
|
}
|
6965
6962
|
|
6966
|
-
export interface RemoveOwnerPayload extends TypedFunctionPayload<[
|
6967
|
-
arguments_decoded: [
|
6963
|
+
export interface RemoveOwnerPayload extends TypedFunctionPayload<[string]> {
|
6964
|
+
arguments_decoded: [string];
|
6968
6965
|
type_arguments: [];
|
6969
6966
|
}
|
6970
6967
|
|
6971
6968
|
export interface RemoveOwnersPayload
|
6972
|
-
extends TypedFunctionPayload<[
|
6973
|
-
arguments_decoded: [
|
6969
|
+
extends TypedFunctionPayload<[string[]]> {
|
6970
|
+
arguments_decoded: [string[]];
|
6974
6971
|
type_arguments: [];
|
6975
6972
|
}
|
6976
6973
|
|
@@ -6987,8 +6984,8 @@ export namespace multisig_account {
|
|
6987
6984
|
}
|
6988
6985
|
|
6989
6986
|
export interface VoteTransanctionPayload
|
6990
|
-
extends TypedFunctionPayload<[
|
6991
|
-
arguments_decoded: [
|
6987
|
+
extends TypedFunctionPayload<[string, bigint, Boolean]> {
|
6988
|
+
arguments_decoded: [string, bigint, Boolean];
|
6992
6989
|
type_arguments: [];
|
6993
6990
|
}
|
6994
6991
|
}
|
@@ -6997,7 +6994,7 @@ export namespace pool_u64_unbound {
|
|
6997
6994
|
export interface Pool {
|
6998
6995
|
total_coins: bigint;
|
6999
6996
|
total_shares: bigint;
|
7000
|
-
shares: table_with_length.TableWithLength<
|
6997
|
+
shares: table_with_length.TableWithLength<string, bigint>;
|
7001
6998
|
scaling_factor: bigint;
|
7002
6999
|
}
|
7003
7000
|
|
@@ -7089,7 +7086,7 @@ export class resource_account extends AptosBaseProcessor {
|
|
7089
7086
|
|
7090
7087
|
export namespace resource_account {
|
7091
7088
|
export interface Container {
|
7092
|
-
store: simple_map.SimpleMap<
|
7089
|
+
store: simple_map.SimpleMap<string, account.SignerCapability>;
|
7093
7090
|
}
|
7094
7091
|
|
7095
7092
|
export namespace Container {
|
@@ -7513,8 +7510,8 @@ export class staking_contract extends AptosBaseProcessor {
|
|
7513
7510
|
|
7514
7511
|
export namespace staking_contract {
|
7515
7512
|
export interface AddDistributionEvent {
|
7516
|
-
operator:
|
7517
|
-
pool_address:
|
7513
|
+
operator: string;
|
7514
|
+
pool_address: string;
|
7518
7515
|
amount: bigint;
|
7519
7516
|
}
|
7520
7517
|
|
@@ -7537,8 +7534,8 @@ export namespace staking_contract {
|
|
7537
7534
|
}
|
7538
7535
|
|
7539
7536
|
export interface AddStakeEvent {
|
7540
|
-
operator:
|
7541
|
-
pool_address:
|
7537
|
+
operator: string;
|
7538
|
+
pool_address: string;
|
7542
7539
|
amount: bigint;
|
7543
7540
|
}
|
7544
7541
|
|
@@ -7559,9 +7556,9 @@ export namespace staking_contract {
|
|
7559
7556
|
}
|
7560
7557
|
|
7561
7558
|
export interface CreateStakingContractEvent {
|
7562
|
-
operator:
|
7563
|
-
voter:
|
7564
|
-
pool_address:
|
7559
|
+
operator: string;
|
7560
|
+
voter: string;
|
7561
|
+
pool_address: string;
|
7565
7562
|
principal: bigint;
|
7566
7563
|
commission_percentage: bigint;
|
7567
7564
|
}
|
@@ -7586,9 +7583,9 @@ export namespace staking_contract {
|
|
7586
7583
|
}
|
7587
7584
|
|
7588
7585
|
export interface DistributeEvent {
|
7589
|
-
operator:
|
7590
|
-
pool_address:
|
7591
|
-
recipient:
|
7586
|
+
operator: string;
|
7587
|
+
pool_address: string;
|
7588
|
+
recipient: string;
|
7592
7589
|
amount: bigint;
|
7593
7590
|
}
|
7594
7591
|
|
@@ -7611,8 +7608,8 @@ export namespace staking_contract {
|
|
7611
7608
|
}
|
7612
7609
|
|
7613
7610
|
export interface RequestCommissionEvent {
|
7614
|
-
operator:
|
7615
|
-
pool_address:
|
7611
|
+
operator: string;
|
7612
|
+
pool_address: string;
|
7616
7613
|
accumulated_rewards: bigint;
|
7617
7614
|
commission_amount: bigint;
|
7618
7615
|
}
|
@@ -7636,8 +7633,8 @@ export namespace staking_contract {
|
|
7636
7633
|
}
|
7637
7634
|
|
7638
7635
|
export interface ResetLockupEvent {
|
7639
|
-
operator:
|
7640
|
-
pool_address:
|
7636
|
+
operator: string;
|
7637
|
+
pool_address: string;
|
7641
7638
|
}
|
7642
7639
|
|
7643
7640
|
export namespace ResetLockupEvent {
|
@@ -7660,7 +7657,7 @@ export namespace staking_contract {
|
|
7660
7657
|
|
7661
7658
|
export interface StakingContract {
|
7662
7659
|
principal: bigint;
|
7663
|
-
pool_address:
|
7660
|
+
pool_address: string;
|
7664
7661
|
owner_cap: stake.OwnerCapability;
|
7665
7662
|
commission_percentage: bigint;
|
7666
7663
|
distribution_pool: pool_u64.Pool;
|
@@ -7714,7 +7711,7 @@ export namespace staking_contract {
|
|
7714
7711
|
|
7715
7712
|
export interface Store {
|
7716
7713
|
staking_contracts: simple_map.SimpleMap<
|
7717
|
-
|
7714
|
+
string,
|
7718
7715
|
staking_contract.StakingContract
|
7719
7716
|
>;
|
7720
7717
|
create_staking_contract_events: event.EventHandle<staking_contract.CreateStakingContractEvent>;
|
@@ -7739,9 +7736,9 @@ export namespace staking_contract {
|
|
7739
7736
|
}
|
7740
7737
|
|
7741
7738
|
export interface SwitchOperatorEvent {
|
7742
|
-
old_operator:
|
7743
|
-
new_operator:
|
7744
|
-
pool_address:
|
7739
|
+
old_operator: string;
|
7740
|
+
new_operator: string;
|
7741
|
+
pool_address: string;
|
7745
7742
|
}
|
7746
7743
|
|
7747
7744
|
export namespace SwitchOperatorEvent {
|
@@ -7763,8 +7760,8 @@ export namespace staking_contract {
|
|
7763
7760
|
}
|
7764
7761
|
|
7765
7762
|
export interface UnlockStakeEvent {
|
7766
|
-
operator:
|
7767
|
-
pool_address:
|
7763
|
+
operator: string;
|
7764
|
+
pool_address: string;
|
7768
7765
|
amount: bigint;
|
7769
7766
|
commission_paid: bigint;
|
7770
7767
|
}
|
@@ -7788,8 +7785,8 @@ export namespace staking_contract {
|
|
7788
7785
|
}
|
7789
7786
|
|
7790
7787
|
export interface UpdateCommissionEvent {
|
7791
|
-
staker:
|
7792
|
-
operator:
|
7788
|
+
staker: string;
|
7789
|
+
operator: string;
|
7793
7790
|
old_commission_percentage: bigint;
|
7794
7791
|
new_commission_percentage: bigint;
|
7795
7792
|
}
|
@@ -7813,10 +7810,10 @@ export namespace staking_contract {
|
|
7813
7810
|
}
|
7814
7811
|
|
7815
7812
|
export interface UpdateVoterEvent {
|
7816
|
-
operator:
|
7817
|
-
pool_address:
|
7818
|
-
old_voter:
|
7819
|
-
new_voter:
|
7813
|
+
operator: string;
|
7814
|
+
pool_address: string;
|
7815
|
+
old_voter: string;
|
7816
|
+
new_voter: string;
|
7820
7817
|
}
|
7821
7818
|
|
7822
7819
|
export namespace UpdateVoterEvent {
|
@@ -7838,67 +7835,66 @@ export namespace staking_contract {
|
|
7838
7835
|
}
|
7839
7836
|
|
7840
7837
|
export interface AddStakePayload
|
7841
|
-
extends TypedFunctionPayload<[
|
7842
|
-
arguments_decoded: [
|
7838
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
7839
|
+
arguments_decoded: [string, bigint];
|
7843
7840
|
type_arguments: [];
|
7844
7841
|
}
|
7845
7842
|
|
7846
7843
|
export interface CreateStakingContractPayload
|
7847
|
-
extends TypedFunctionPayload<[
|
7848
|
-
arguments_decoded: [
|
7844
|
+
extends TypedFunctionPayload<[string, string, bigint, bigint, string]> {
|
7845
|
+
arguments_decoded: [string, string, bigint, bigint, string];
|
7849
7846
|
type_arguments: [];
|
7850
7847
|
}
|
7851
7848
|
|
7852
7849
|
export interface DistributePayload
|
7853
|
-
extends TypedFunctionPayload<[
|
7854
|
-
arguments_decoded: [
|
7850
|
+
extends TypedFunctionPayload<[string, string]> {
|
7851
|
+
arguments_decoded: [string, string];
|
7855
7852
|
type_arguments: [];
|
7856
7853
|
}
|
7857
7854
|
|
7858
7855
|
export interface RequestCommissionPayload
|
7859
|
-
extends TypedFunctionPayload<[
|
7860
|
-
arguments_decoded: [
|
7856
|
+
extends TypedFunctionPayload<[string, string]> {
|
7857
|
+
arguments_decoded: [string, string];
|
7861
7858
|
type_arguments: [];
|
7862
7859
|
}
|
7863
7860
|
|
7864
|
-
export interface ResetLockupPayload extends TypedFunctionPayload<[
|
7865
|
-
arguments_decoded: [
|
7861
|
+
export interface ResetLockupPayload extends TypedFunctionPayload<[string]> {
|
7862
|
+
arguments_decoded: [string];
|
7866
7863
|
type_arguments: [];
|
7867
7864
|
}
|
7868
7865
|
|
7869
7866
|
export interface SwitchOperatorPayload
|
7870
|
-
extends TypedFunctionPayload<[
|
7871
|
-
arguments_decoded: [
|
7867
|
+
extends TypedFunctionPayload<[string, string, bigint]> {
|
7868
|
+
arguments_decoded: [string, string, bigint];
|
7872
7869
|
type_arguments: [];
|
7873
7870
|
}
|
7874
7871
|
|
7875
7872
|
export interface SwitchOperatorWithSameCommissionPayload
|
7876
|
-
extends TypedFunctionPayload<[
|
7877
|
-
arguments_decoded: [
|
7873
|
+
extends TypedFunctionPayload<[string, string]> {
|
7874
|
+
arguments_decoded: [string, string];
|
7878
7875
|
type_arguments: [];
|
7879
7876
|
}
|
7880
7877
|
|
7881
|
-
export interface UnlockRewardsPayload
|
7882
|
-
|
7883
|
-
arguments_decoded: [Address];
|
7878
|
+
export interface UnlockRewardsPayload extends TypedFunctionPayload<[string]> {
|
7879
|
+
arguments_decoded: [string];
|
7884
7880
|
type_arguments: [];
|
7885
7881
|
}
|
7886
7882
|
|
7887
7883
|
export interface UnlockStakePayload
|
7888
|
-
extends TypedFunctionPayload<[
|
7889
|
-
arguments_decoded: [
|
7884
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
7885
|
+
arguments_decoded: [string, bigint];
|
7890
7886
|
type_arguments: [];
|
7891
7887
|
}
|
7892
7888
|
|
7893
7889
|
export interface UpdateCommisionPayload
|
7894
|
-
extends TypedFunctionPayload<[
|
7895
|
-
arguments_decoded: [
|
7890
|
+
extends TypedFunctionPayload<[string, bigint]> {
|
7891
|
+
arguments_decoded: [string, bigint];
|
7896
7892
|
type_arguments: [];
|
7897
7893
|
}
|
7898
7894
|
|
7899
7895
|
export interface UpdateVoterPayload
|
7900
|
-
extends TypedFunctionPayload<[
|
7901
|
-
arguments_decoded: [
|
7896
|
+
extends TypedFunctionPayload<[string, string]> {
|
7897
|
+
arguments_decoded: [string, string];
|
7902
7898
|
type_arguments: [];
|
7903
7899
|
}
|
7904
7900
|
}
|
@@ -7929,7 +7925,7 @@ export namespace table_with_length {
|
|
7929
7925
|
|
7930
7926
|
export namespace aggregator_factory {
|
7931
7927
|
export interface AggregatorFactory {
|
7932
|
-
phantom_table: table.Table<
|
7928
|
+
phantom_table: table.Table<string, bigint>;
|
7933
7929
|
}
|
7934
7930
|
|
7935
7931
|
export namespace AggregatorFactory {
|
@@ -8001,7 +7997,7 @@ export namespace transaction_context {}
|
|
8001
7997
|
|
8002
7998
|
export namespace transaction_validation {
|
8003
7999
|
export interface TransactionValidation {
|
8004
|
-
module_addr:
|
8000
|
+
module_addr: string;
|
8005
8001
|
module_name: string;
|
8006
8002
|
script_prologue_name: string;
|
8007
8003
|
module_prologue_name: string;
|