@sentio/sdk 2.29.0-rc.1 → 2.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/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/testing/aptos-facet.ts +7 -7
- package/src/tsup.config.ts +1 -2
@@ -1,8 +1,8 @@
|
|
1
1
|
import { TypeDescriptor } from "@typemove/move";
|
2
2
|
import { MoveCoder, TypedEventInstance } from "@typemove/aptos";
|
3
|
-
import { Address } from "@typemove/aptos";
|
4
3
|
import { CallFilter, MoveFetchConfig } from "@sentio/sdk/move";
|
5
4
|
import { AptosBindOptions, AptosBaseProcessor, TypedFunctionPayload, AptosContext } from "@sentio/sdk/aptos";
|
5
|
+
import { MoveAddressType } from "@aptos-labs/ts-sdk";
|
6
6
|
export declare class acl extends AptosBaseProcessor {
|
7
7
|
constructor(options: AptosBindOptions);
|
8
8
|
static DEFAULT_OPTIONS: AptosBindOptions;
|
@@ -11,7 +11,7 @@ export declare class acl extends AptosBaseProcessor {
|
|
11
11
|
}
|
12
12
|
export declare namespace acl {
|
13
13
|
interface ACL {
|
14
|
-
list:
|
14
|
+
list: MoveAddressType[];
|
15
15
|
}
|
16
16
|
namespace ACL {
|
17
17
|
const TYPE_QNAME = "0x1::acl::ACL";
|
@@ -56,7 +56,7 @@ export declare class code extends AptosBaseProcessor {
|
|
56
56
|
}
|
57
57
|
export declare namespace code {
|
58
58
|
interface AllowedDep {
|
59
|
-
account:
|
59
|
+
account: MoveAddressType;
|
60
60
|
module_name: string;
|
61
61
|
}
|
62
62
|
namespace AllowedDep {
|
@@ -78,7 +78,7 @@ export declare namespace code {
|
|
78
78
|
type_arguments: [];
|
79
79
|
}
|
80
80
|
interface PackageDep {
|
81
|
-
account:
|
81
|
+
account: MoveAddressType;
|
82
82
|
package_name: string;
|
83
83
|
}
|
84
84
|
namespace PackageDep {
|
@@ -230,16 +230,16 @@ export declare namespace coin {
|
|
230
230
|
data_decoded: WithdrawEvent;
|
231
231
|
type_arguments: [];
|
232
232
|
}
|
233
|
-
interface FreezeCoinStorePayload<T0 = any> extends TypedFunctionPayload<[
|
234
|
-
arguments_decoded: [
|
233
|
+
interface FreezeCoinStorePayload<T0 = any> extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
234
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
235
235
|
type_arguments: [string];
|
236
236
|
}
|
237
|
-
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[
|
238
|
-
arguments_decoded: [
|
237
|
+
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
238
|
+
arguments_decoded: [MoveAddressType, bigint];
|
239
239
|
type_arguments: [string];
|
240
240
|
}
|
241
|
-
interface UnfreezeCoinStorePayload<T0 = any> extends TypedFunctionPayload<[
|
242
|
-
arguments_decoded: [
|
241
|
+
interface UnfreezeCoinStorePayload<T0 = any> extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
242
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
243
243
|
type_arguments: [string];
|
244
244
|
}
|
245
245
|
interface UpgradeSupplyPayload<T0 = any> extends TypedFunctionPayload<[]> {
|
@@ -268,7 +268,7 @@ export declare namespace guid {
|
|
268
268
|
}
|
269
269
|
interface ID {
|
270
270
|
creation_num: bigint;
|
271
|
-
addr:
|
271
|
+
addr: MoveAddressType;
|
272
272
|
}
|
273
273
|
namespace ID {
|
274
274
|
const TYPE_QNAME = "0x1::guid::ID";
|
@@ -300,12 +300,12 @@ export declare namespace block {
|
|
300
300
|
function type(): TypeDescriptor<BlockResource>;
|
301
301
|
}
|
302
302
|
interface NewBlockEvent {
|
303
|
-
hash:
|
303
|
+
hash: MoveAddressType;
|
304
304
|
epoch: bigint;
|
305
305
|
round: bigint;
|
306
306
|
height: bigint;
|
307
307
|
previous_block_votes_bitvec: string;
|
308
|
-
proposer:
|
308
|
+
proposer: MoveAddressType;
|
309
309
|
failed_proposer_indices: bigint[];
|
310
310
|
time_microseconds: bigint;
|
311
311
|
}
|
@@ -377,7 +377,7 @@ export declare class stake extends AptosBaseProcessor {
|
|
377
377
|
}
|
378
378
|
export declare namespace stake {
|
379
379
|
interface AddStakeEvent {
|
380
|
-
pool_address:
|
380
|
+
pool_address: MoveAddressType;
|
381
381
|
amount_added: bigint;
|
382
382
|
}
|
383
383
|
namespace AddStakeEvent {
|
@@ -389,7 +389,7 @@ export declare namespace stake {
|
|
389
389
|
type_arguments: [];
|
390
390
|
}
|
391
391
|
interface AllowedValidators {
|
392
|
-
accounts:
|
392
|
+
accounts: MoveAddressType[];
|
393
393
|
}
|
394
394
|
namespace AllowedValidators {
|
395
395
|
const TYPE_QNAME = "0x1::stake::AllowedValidators";
|
@@ -403,7 +403,7 @@ export declare namespace stake {
|
|
403
403
|
function type(): TypeDescriptor<AptosCoinCapabilities>;
|
404
404
|
}
|
405
405
|
interface DistributeRewardsEvent {
|
406
|
-
pool_address:
|
406
|
+
pool_address: MoveAddressType;
|
407
407
|
rewards_amount: bigint;
|
408
408
|
}
|
409
409
|
namespace DistributeRewardsEvent {
|
@@ -415,7 +415,7 @@ export declare namespace stake {
|
|
415
415
|
type_arguments: [];
|
416
416
|
}
|
417
417
|
interface IncreaseLockupEvent {
|
418
|
-
pool_address:
|
418
|
+
pool_address: MoveAddressType;
|
419
419
|
old_locked_until_secs: bigint;
|
420
420
|
new_locked_until_secs: bigint;
|
421
421
|
}
|
@@ -440,7 +440,7 @@ export declare namespace stake {
|
|
440
440
|
type_arguments: [];
|
441
441
|
}
|
442
442
|
interface JoinValidatorSetEvent {
|
443
|
-
pool_address:
|
443
|
+
pool_address: MoveAddressType;
|
444
444
|
}
|
445
445
|
namespace JoinValidatorSetEvent {
|
446
446
|
const TYPE_QNAME = "0x1::stake::JoinValidatorSetEvent";
|
@@ -451,7 +451,7 @@ export declare namespace stake {
|
|
451
451
|
type_arguments: [];
|
452
452
|
}
|
453
453
|
interface LeaveValidatorSetEvent {
|
454
|
-
pool_address:
|
454
|
+
pool_address: MoveAddressType;
|
455
455
|
}
|
456
456
|
namespace LeaveValidatorSetEvent {
|
457
457
|
const TYPE_QNAME = "0x1::stake::LeaveValidatorSetEvent";
|
@@ -462,14 +462,14 @@ export declare namespace stake {
|
|
462
462
|
type_arguments: [];
|
463
463
|
}
|
464
464
|
interface OwnerCapability {
|
465
|
-
pool_address:
|
465
|
+
pool_address: MoveAddressType;
|
466
466
|
}
|
467
467
|
namespace OwnerCapability {
|
468
468
|
const TYPE_QNAME = "0x1::stake::OwnerCapability";
|
469
469
|
function type(): TypeDescriptor<OwnerCapability>;
|
470
470
|
}
|
471
471
|
interface ReactivateStakeEvent {
|
472
|
-
pool_address:
|
472
|
+
pool_address: MoveAddressType;
|
473
473
|
amount: bigint;
|
474
474
|
}
|
475
475
|
namespace ReactivateStakeEvent {
|
@@ -481,7 +481,7 @@ export declare namespace stake {
|
|
481
481
|
type_arguments: [];
|
482
482
|
}
|
483
483
|
interface RegisterValidatorCandidateEvent {
|
484
|
-
pool_address:
|
484
|
+
pool_address: MoveAddressType;
|
485
485
|
}
|
486
486
|
namespace RegisterValidatorCandidateEvent {
|
487
487
|
const TYPE_QNAME = "0x1::stake::RegisterValidatorCandidateEvent";
|
@@ -492,7 +492,7 @@ export declare namespace stake {
|
|
492
492
|
type_arguments: [];
|
493
493
|
}
|
494
494
|
interface RotateConsensusKeyEvent {
|
495
|
-
pool_address:
|
495
|
+
pool_address: MoveAddressType;
|
496
496
|
old_consensus_pubkey: string;
|
497
497
|
new_consensus_pubkey: string;
|
498
498
|
}
|
@@ -505,9 +505,9 @@ export declare namespace stake {
|
|
505
505
|
type_arguments: [];
|
506
506
|
}
|
507
507
|
interface SetOperatorEvent {
|
508
|
-
pool_address:
|
509
|
-
old_operator:
|
510
|
-
new_operator:
|
508
|
+
pool_address: MoveAddressType;
|
509
|
+
old_operator: MoveAddressType;
|
510
|
+
new_operator: MoveAddressType;
|
511
511
|
}
|
512
512
|
namespace SetOperatorEvent {
|
513
513
|
const TYPE_QNAME = "0x1::stake::SetOperatorEvent";
|
@@ -523,8 +523,8 @@ export declare namespace stake {
|
|
523
523
|
pending_active: coin.Coin<aptos_coin.AptosCoin>;
|
524
524
|
pending_inactive: coin.Coin<aptos_coin.AptosCoin>;
|
525
525
|
locked_until_secs: bigint;
|
526
|
-
operator_address:
|
527
|
-
delegated_voter:
|
526
|
+
operator_address: MoveAddressType;
|
527
|
+
delegated_voter: MoveAddressType;
|
528
528
|
initialize_validator_events: event.EventHandle<stake.RegisterValidatorCandidateEvent>;
|
529
529
|
set_operator_events: event.EventHandle<stake.SetOperatorEvent>;
|
530
530
|
add_stake_events: event.EventHandle<stake.AddStakeEvent>;
|
@@ -543,7 +543,7 @@ export declare namespace stake {
|
|
543
543
|
function type(): TypeDescriptor<StakePool>;
|
544
544
|
}
|
545
545
|
interface UnlockStakeEvent {
|
546
|
-
pool_address:
|
546
|
+
pool_address: MoveAddressType;
|
547
547
|
amount_unlocked: bigint;
|
548
548
|
}
|
549
549
|
namespace UnlockStakeEvent {
|
@@ -555,7 +555,7 @@ export declare namespace stake {
|
|
555
555
|
type_arguments: [];
|
556
556
|
}
|
557
557
|
interface UpdateNetworkAndFullnodeAddressesEvent {
|
558
|
-
pool_address:
|
558
|
+
pool_address: MoveAddressType;
|
559
559
|
old_network_addresses: string;
|
560
560
|
new_network_addresses: string;
|
561
561
|
old_fullnode_addresses: string;
|
@@ -584,14 +584,14 @@ export declare namespace stake {
|
|
584
584
|
type_arguments: [];
|
585
585
|
}
|
586
586
|
interface ValidatorFees {
|
587
|
-
fees_table: table.Table<
|
587
|
+
fees_table: table.Table<MoveAddressType, coin.Coin<aptos_coin.AptosCoin>>;
|
588
588
|
}
|
589
589
|
namespace ValidatorFees {
|
590
590
|
const TYPE_QNAME = "0x1::stake::ValidatorFees";
|
591
591
|
function type(): TypeDescriptor<ValidatorFees>;
|
592
592
|
}
|
593
593
|
interface ValidatorInfo {
|
594
|
-
addr:
|
594
|
+
addr: MoveAddressType;
|
595
595
|
voting_power: bigint;
|
596
596
|
config: stake.ValidatorConfig;
|
597
597
|
}
|
@@ -623,7 +623,7 @@ export declare namespace stake {
|
|
623
623
|
function type(): TypeDescriptor<ValidatorSet>;
|
624
624
|
}
|
625
625
|
interface WithdrawStakeEvent {
|
626
|
-
pool_address:
|
626
|
+
pool_address: MoveAddressType;
|
627
627
|
amount_withdrawn: bigint;
|
628
628
|
}
|
629
629
|
namespace WithdrawStakeEvent {
|
@@ -642,44 +642,44 @@ export declare namespace stake {
|
|
642
642
|
arguments_decoded: [];
|
643
643
|
type_arguments: [];
|
644
644
|
}
|
645
|
-
interface InitializeStakeOwnerPayload extends TypedFunctionPayload<[bigint,
|
646
|
-
arguments_decoded: [bigint,
|
645
|
+
interface InitializeStakeOwnerPayload extends TypedFunctionPayload<[bigint, MoveAddressType, MoveAddressType]> {
|
646
|
+
arguments_decoded: [bigint, MoveAddressType, MoveAddressType];
|
647
647
|
type_arguments: [];
|
648
648
|
}
|
649
649
|
interface InitializeValidatorPayload extends TypedFunctionPayload<[string, string, string, string]> {
|
650
650
|
arguments_decoded: [string, string, string, string];
|
651
651
|
type_arguments: [];
|
652
652
|
}
|
653
|
-
interface JoinValidatorSetPayload extends TypedFunctionPayload<[
|
654
|
-
arguments_decoded: [
|
653
|
+
interface JoinValidatorSetPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
654
|
+
arguments_decoded: [MoveAddressType];
|
655
655
|
type_arguments: [];
|
656
656
|
}
|
657
|
-
interface LeaveValidatorSetPayload extends TypedFunctionPayload<[
|
658
|
-
arguments_decoded: [
|
657
|
+
interface LeaveValidatorSetPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
658
|
+
arguments_decoded: [MoveAddressType];
|
659
659
|
type_arguments: [];
|
660
660
|
}
|
661
661
|
interface ReactivateStakePayload extends TypedFunctionPayload<[bigint]> {
|
662
662
|
arguments_decoded: [bigint];
|
663
663
|
type_arguments: [];
|
664
664
|
}
|
665
|
-
interface RotateConsensusKeyPayload extends TypedFunctionPayload<[
|
666
|
-
arguments_decoded: [
|
665
|
+
interface RotateConsensusKeyPayload extends TypedFunctionPayload<[MoveAddressType, string, string]> {
|
666
|
+
arguments_decoded: [MoveAddressType, string, string];
|
667
667
|
type_arguments: [];
|
668
668
|
}
|
669
|
-
interface SetDelegatedVoterPayload extends TypedFunctionPayload<[
|
670
|
-
arguments_decoded: [
|
669
|
+
interface SetDelegatedVoterPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
670
|
+
arguments_decoded: [MoveAddressType];
|
671
671
|
type_arguments: [];
|
672
672
|
}
|
673
|
-
interface SetOperatorPayload extends TypedFunctionPayload<[
|
674
|
-
arguments_decoded: [
|
673
|
+
interface SetOperatorPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
674
|
+
arguments_decoded: [MoveAddressType];
|
675
675
|
type_arguments: [];
|
676
676
|
}
|
677
677
|
interface UnlockPayload extends TypedFunctionPayload<[bigint]> {
|
678
678
|
arguments_decoded: [bigint];
|
679
679
|
type_arguments: [];
|
680
680
|
}
|
681
|
-
interface UpdateNetworkAndFullnodeAddressesPayload extends TypedFunctionPayload<[
|
682
|
-
arguments_decoded: [
|
681
|
+
interface UpdateNetworkAndFullnodeAddressesPayload extends TypedFunctionPayload<[MoveAddressType, string, string]> {
|
682
|
+
arguments_decoded: [MoveAddressType, string, string];
|
683
683
|
type_arguments: [];
|
684
684
|
}
|
685
685
|
interface WithdrawPayload extends TypedFunctionPayload<[bigint]> {
|
@@ -706,7 +706,7 @@ export declare namespace table {
|
|
706
706
|
type_arguments: [string];
|
707
707
|
}
|
708
708
|
interface Table<T0, T1> {
|
709
|
-
handle:
|
709
|
+
handle: MoveAddressType;
|
710
710
|
}
|
711
711
|
namespace Table {
|
712
712
|
const TYPE_QNAME = "0x1::table::Table";
|
@@ -732,7 +732,7 @@ export declare class object_ extends AptosBaseProcessor {
|
|
732
732
|
}
|
733
733
|
export declare namespace object_ {
|
734
734
|
interface ConstructorRef {
|
735
|
-
self:
|
735
|
+
self: MoveAddressType;
|
736
736
|
can_delete: Boolean;
|
737
737
|
}
|
738
738
|
namespace ConstructorRef {
|
@@ -740,7 +740,7 @@ export declare namespace object_ {
|
|
740
740
|
function type(): TypeDescriptor<ConstructorRef>;
|
741
741
|
}
|
742
742
|
interface DeleteRef {
|
743
|
-
self:
|
743
|
+
self: MoveAddressType;
|
744
744
|
}
|
745
745
|
namespace DeleteRef {
|
746
746
|
const TYPE_QNAME = "0x1::object::DeleteRef";
|
@@ -751,7 +751,7 @@ export declare namespace object_ {
|
|
751
751
|
type_arguments: [];
|
752
752
|
}
|
753
753
|
interface DeriveRef {
|
754
|
-
self:
|
754
|
+
self: MoveAddressType;
|
755
755
|
}
|
756
756
|
namespace DeriveRef {
|
757
757
|
const TYPE_QNAME = "0x1::object::DeriveRef";
|
@@ -762,7 +762,7 @@ export declare namespace object_ {
|
|
762
762
|
type_arguments: [];
|
763
763
|
}
|
764
764
|
interface ExtendRef {
|
765
|
-
self:
|
765
|
+
self: MoveAddressType;
|
766
766
|
}
|
767
767
|
namespace ExtendRef {
|
768
768
|
const TYPE_QNAME = "0x1::object::ExtendRef";
|
@@ -773,15 +773,15 @@ export declare namespace object_ {
|
|
773
773
|
type_arguments: [];
|
774
774
|
}
|
775
775
|
interface LinearTransferRef {
|
776
|
-
self:
|
777
|
-
owner:
|
776
|
+
self: MoveAddressType;
|
777
|
+
owner: MoveAddressType;
|
778
778
|
}
|
779
779
|
namespace LinearTransferRef {
|
780
780
|
const TYPE_QNAME = "0x1::object::LinearTransferRef";
|
781
781
|
function type(): TypeDescriptor<LinearTransferRef>;
|
782
782
|
}
|
783
783
|
interface Object<T0> {
|
784
|
-
inner:
|
784
|
+
inner: MoveAddressType;
|
785
785
|
}
|
786
786
|
namespace Object {
|
787
787
|
const TYPE_QNAME = "0x1::object::Object";
|
@@ -793,7 +793,7 @@ export declare namespace object_ {
|
|
793
793
|
}
|
794
794
|
interface ObjectCore {
|
795
795
|
guid_creation_num: bigint;
|
796
|
-
owner:
|
796
|
+
owner: MoveAddressType;
|
797
797
|
allow_ungated_transfer: Boolean;
|
798
798
|
transfer_events: event.EventHandle<object_.TransferEvent>;
|
799
799
|
}
|
@@ -809,16 +809,16 @@ export declare namespace object_ {
|
|
809
809
|
function type(): TypeDescriptor<ObjectGroup>;
|
810
810
|
}
|
811
811
|
interface TombStone {
|
812
|
-
original_owner:
|
812
|
+
original_owner: MoveAddressType;
|
813
813
|
}
|
814
814
|
namespace TombStone {
|
815
815
|
const TYPE_QNAME = "0x1::object::TombStone";
|
816
816
|
function type(): TypeDescriptor<TombStone>;
|
817
817
|
}
|
818
818
|
interface TransferEvent {
|
819
|
-
object:
|
820
|
-
from:
|
821
|
-
to:
|
819
|
+
object: MoveAddressType;
|
820
|
+
from: MoveAddressType;
|
821
|
+
to: MoveAddressType;
|
822
822
|
}
|
823
823
|
namespace TransferEvent {
|
824
824
|
const TYPE_QNAME = "0x1::object::TransferEvent";
|
@@ -829,7 +829,7 @@ export declare namespace object_ {
|
|
829
829
|
type_arguments: [];
|
830
830
|
}
|
831
831
|
interface TransferRef {
|
832
|
-
self:
|
832
|
+
self: MoveAddressType;
|
833
833
|
}
|
834
834
|
namespace TransferRef {
|
835
835
|
const TYPE_QNAME = "0x1::object::TransferRef";
|
@@ -843,12 +843,12 @@ export declare namespace object_ {
|
|
843
843
|
arguments_decoded: [object_.Object<T0>];
|
844
844
|
type_arguments: [string];
|
845
845
|
}
|
846
|
-
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[object_.Object<T0>,
|
847
|
-
arguments_decoded: [object_.Object<T0>,
|
846
|
+
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[object_.Object<T0>, MoveAddressType]> {
|
847
|
+
arguments_decoded: [object_.Object<T0>, MoveAddressType];
|
848
848
|
type_arguments: [string];
|
849
849
|
}
|
850
|
-
interface TransferCallPayload extends TypedFunctionPayload<[
|
851
|
-
arguments_decoded: [
|
850
|
+
interface TransferCallPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
851
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
852
852
|
type_arguments: [];
|
853
853
|
}
|
854
854
|
interface TransferToObjectPayload<T0 = any, T1 = any> extends TypedFunctionPayload<[object_.Object<T0>, object_.Object<T1>]> {
|
@@ -927,7 +927,7 @@ export declare namespace voting {
|
|
927
927
|
type_arguments: [];
|
928
928
|
}
|
929
929
|
interface Proposal<T0> {
|
930
|
-
proposer:
|
930
|
+
proposer: MoveAddressType;
|
931
931
|
execution_content: option.Option<T0>;
|
932
932
|
metadata: simple_map.SimpleMap<string, string>;
|
933
933
|
creation_time_secs: bigint;
|
@@ -945,7 +945,7 @@ export declare namespace voting {
|
|
945
945
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Proposal<T0>>;
|
946
946
|
}
|
947
947
|
interface RegisterForumEvent {
|
948
|
-
hosting_account:
|
948
|
+
hosting_account: MoveAddressType;
|
949
949
|
proposal_type_info: type_info.TypeInfo;
|
950
950
|
}
|
951
951
|
namespace RegisterForumEvent {
|
@@ -1034,7 +1034,7 @@ export declare namespace account {
|
|
1034
1034
|
function type(): TypeDescriptor<Account>;
|
1035
1035
|
}
|
1036
1036
|
interface CapabilityOffer<T0> {
|
1037
|
-
for: option.Option<
|
1037
|
+
for: option.Option<MoveAddressType>;
|
1038
1038
|
}
|
1039
1039
|
namespace CapabilityOffer {
|
1040
1040
|
const TYPE_QNAME = "0x1::account::CapabilityOffer";
|
@@ -1064,14 +1064,14 @@ export declare namespace account {
|
|
1064
1064
|
type_arguments: [];
|
1065
1065
|
}
|
1066
1066
|
interface OriginatingAddress {
|
1067
|
-
address_map: table.Table<
|
1067
|
+
address_map: table.Table<MoveAddressType, MoveAddressType>;
|
1068
1068
|
}
|
1069
1069
|
namespace OriginatingAddress {
|
1070
1070
|
const TYPE_QNAME = "0x1::account::OriginatingAddress";
|
1071
1071
|
function type(): TypeDescriptor<OriginatingAddress>;
|
1072
1072
|
}
|
1073
1073
|
interface RotationCapability {
|
1074
|
-
account:
|
1074
|
+
account: MoveAddressType;
|
1075
1075
|
}
|
1076
1076
|
namespace RotationCapability {
|
1077
1077
|
const TYPE_QNAME = "0x1::account::RotationCapability";
|
@@ -1083,7 +1083,7 @@ export declare namespace account {
|
|
1083
1083
|
}
|
1084
1084
|
interface RotationCapabilityOfferProofChallenge {
|
1085
1085
|
sequence_number: bigint;
|
1086
|
-
recipient_address:
|
1086
|
+
recipient_address: MoveAddressType;
|
1087
1087
|
}
|
1088
1088
|
namespace RotationCapabilityOfferProofChallenge {
|
1089
1089
|
const TYPE_QNAME = "0x1::account::RotationCapabilityOfferProofChallenge";
|
@@ -1092,8 +1092,8 @@ export declare namespace account {
|
|
1092
1092
|
interface RotationCapabilityOfferProofChallengeV2 {
|
1093
1093
|
chain_id: number;
|
1094
1094
|
sequence_number: bigint;
|
1095
|
-
source_address:
|
1096
|
-
recipient_address:
|
1095
|
+
source_address: MoveAddressType;
|
1096
|
+
recipient_address: MoveAddressType;
|
1097
1097
|
}
|
1098
1098
|
namespace RotationCapabilityOfferProofChallengeV2 {
|
1099
1099
|
const TYPE_QNAME = "0x1::account::RotationCapabilityOfferProofChallengeV2";
|
@@ -1101,8 +1101,8 @@ export declare namespace account {
|
|
1101
1101
|
}
|
1102
1102
|
interface RotationProofChallenge {
|
1103
1103
|
sequence_number: bigint;
|
1104
|
-
originator:
|
1105
|
-
current_auth_key:
|
1104
|
+
originator: MoveAddressType;
|
1105
|
+
current_auth_key: MoveAddressType;
|
1106
1106
|
new_public_key: string;
|
1107
1107
|
}
|
1108
1108
|
namespace RotationProofChallenge {
|
@@ -1110,7 +1110,7 @@ export declare namespace account {
|
|
1110
1110
|
function type(): TypeDescriptor<RotationProofChallenge>;
|
1111
1111
|
}
|
1112
1112
|
interface SignerCapability {
|
1113
|
-
account:
|
1113
|
+
account: MoveAddressType;
|
1114
1114
|
}
|
1115
1115
|
namespace SignerCapability {
|
1116
1116
|
const TYPE_QNAME = "0x1::account::SignerCapability";
|
@@ -1122,7 +1122,7 @@ export declare namespace account {
|
|
1122
1122
|
}
|
1123
1123
|
interface SignerCapabilityOfferProofChallenge {
|
1124
1124
|
sequence_number: bigint;
|
1125
|
-
recipient_address:
|
1125
|
+
recipient_address: MoveAddressType;
|
1126
1126
|
}
|
1127
1127
|
namespace SignerCapabilityOfferProofChallenge {
|
1128
1128
|
const TYPE_QNAME = "0x1::account::SignerCapabilityOfferProofChallenge";
|
@@ -1130,19 +1130,19 @@ export declare namespace account {
|
|
1130
1130
|
}
|
1131
1131
|
interface SignerCapabilityOfferProofChallengeV2 {
|
1132
1132
|
sequence_number: bigint;
|
1133
|
-
source_address:
|
1134
|
-
recipient_address:
|
1133
|
+
source_address: MoveAddressType;
|
1134
|
+
recipient_address: MoveAddressType;
|
1135
1135
|
}
|
1136
1136
|
namespace SignerCapabilityOfferProofChallengeV2 {
|
1137
1137
|
const TYPE_QNAME = "0x1::account::SignerCapabilityOfferProofChallengeV2";
|
1138
1138
|
function type(): TypeDescriptor<SignerCapabilityOfferProofChallengeV2>;
|
1139
1139
|
}
|
1140
|
-
interface OfferRotationCapabilityPayload extends TypedFunctionPayload<[string, number, string,
|
1141
|
-
arguments_decoded: [string, number, string,
|
1140
|
+
interface OfferRotationCapabilityPayload extends TypedFunctionPayload<[string, number, string, MoveAddressType]> {
|
1141
|
+
arguments_decoded: [string, number, string, MoveAddressType];
|
1142
1142
|
type_arguments: [];
|
1143
1143
|
}
|
1144
|
-
interface OfferSignerCapabilityPayload extends TypedFunctionPayload<[string, number, string,
|
1145
|
-
arguments_decoded: [string, number, string,
|
1144
|
+
interface OfferSignerCapabilityPayload extends TypedFunctionPayload<[string, number, string, MoveAddressType]> {
|
1145
|
+
arguments_decoded: [string, number, string, MoveAddressType];
|
1146
1146
|
type_arguments: [];
|
1147
1147
|
}
|
1148
1148
|
interface RevokeAnyRotationCapabilityPayload extends TypedFunctionPayload<[]> {
|
@@ -1153,12 +1153,12 @@ export declare namespace account {
|
|
1153
1153
|
arguments_decoded: [];
|
1154
1154
|
type_arguments: [];
|
1155
1155
|
}
|
1156
|
-
interface RevokeRotationCapabilityPayload extends TypedFunctionPayload<[
|
1157
|
-
arguments_decoded: [
|
1156
|
+
interface RevokeRotationCapabilityPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
1157
|
+
arguments_decoded: [MoveAddressType];
|
1158
1158
|
type_arguments: [];
|
1159
1159
|
}
|
1160
|
-
interface RevokeSignerCapabilityPayload extends TypedFunctionPayload<[
|
1161
|
-
arguments_decoded: [
|
1160
|
+
interface RevokeSignerCapabilityPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
1161
|
+
arguments_decoded: [MoveAddressType];
|
1162
1162
|
type_arguments: [];
|
1163
1163
|
}
|
1164
1164
|
interface RotateAuthenticationKeyPayload extends TypedFunctionPayload<[
|
@@ -1172,8 +1172,8 @@ export declare namespace account {
|
|
1172
1172
|
arguments_decoded: [number, string, number, string, string, string];
|
1173
1173
|
type_arguments: [];
|
1174
1174
|
}
|
1175
|
-
interface RotateAuthenticationKeyWithRotationCapabilityPayload extends TypedFunctionPayload<[
|
1176
|
-
arguments_decoded: [
|
1175
|
+
interface RotateAuthenticationKeyWithRotationCapabilityPayload extends TypedFunctionPayload<[MoveAddressType, number, string, string]> {
|
1176
|
+
arguments_decoded: [MoveAddressType, number, string, string];
|
1177
1177
|
type_arguments: [];
|
1178
1178
|
}
|
1179
1179
|
}
|
@@ -1230,7 +1230,7 @@ export declare namespace ed25519 {
|
|
1230
1230
|
}
|
1231
1231
|
export declare namespace genesis {
|
1232
1232
|
interface AccountMap {
|
1233
|
-
account_address:
|
1233
|
+
account_address: MoveAddressType;
|
1234
1234
|
balance: bigint;
|
1235
1235
|
}
|
1236
1236
|
namespace AccountMap {
|
@@ -1238,20 +1238,20 @@ export declare namespace genesis {
|
|
1238
1238
|
function type(): TypeDescriptor<AccountMap>;
|
1239
1239
|
}
|
1240
1240
|
interface EmployeeAccountMap {
|
1241
|
-
accounts:
|
1241
|
+
accounts: MoveAddressType[];
|
1242
1242
|
validator: genesis.ValidatorConfigurationWithCommission;
|
1243
1243
|
vesting_schedule_numerator: bigint[];
|
1244
1244
|
vesting_schedule_denominator: bigint;
|
1245
|
-
beneficiary_resetter:
|
1245
|
+
beneficiary_resetter: MoveAddressType;
|
1246
1246
|
}
|
1247
1247
|
namespace EmployeeAccountMap {
|
1248
1248
|
const TYPE_QNAME = "0x1::genesis::EmployeeAccountMap";
|
1249
1249
|
function type(): TypeDescriptor<EmployeeAccountMap>;
|
1250
1250
|
}
|
1251
1251
|
interface ValidatorConfiguration {
|
1252
|
-
owner_address:
|
1253
|
-
operator_address:
|
1254
|
-
voter_address:
|
1252
|
+
owner_address: MoveAddressType;
|
1253
|
+
operator_address: MoveAddressType;
|
1254
|
+
voter_address: MoveAddressType;
|
1255
1255
|
stake_amount: bigint;
|
1256
1256
|
consensus_pubkey: string;
|
1257
1257
|
proof_of_possession: string;
|
@@ -1334,7 +1334,7 @@ export declare class vesting extends AptosBaseProcessor {
|
|
1334
1334
|
}
|
1335
1335
|
export declare namespace vesting {
|
1336
1336
|
interface AdminStore {
|
1337
|
-
vesting_contracts:
|
1337
|
+
vesting_contracts: MoveAddressType[];
|
1338
1338
|
nonce: bigint;
|
1339
1339
|
create_events: event.EventHandle<vesting.CreateVestingContractEvent>;
|
1340
1340
|
}
|
@@ -1343,8 +1343,8 @@ export declare namespace vesting {
|
|
1343
1343
|
function type(): TypeDescriptor<AdminStore>;
|
1344
1344
|
}
|
1345
1345
|
interface AdminWithdrawEvent {
|
1346
|
-
admin:
|
1347
|
-
vesting_contract_address:
|
1346
|
+
admin: MoveAddressType;
|
1347
|
+
vesting_contract_address: MoveAddressType;
|
1348
1348
|
amount: bigint;
|
1349
1349
|
}
|
1350
1350
|
namespace AdminWithdrawEvent {
|
@@ -1356,12 +1356,12 @@ export declare namespace vesting {
|
|
1356
1356
|
type_arguments: [];
|
1357
1357
|
}
|
1358
1358
|
interface CreateVestingContractEvent {
|
1359
|
-
operator:
|
1360
|
-
voter:
|
1359
|
+
operator: MoveAddressType;
|
1360
|
+
voter: MoveAddressType;
|
1361
1361
|
grant_amount: bigint;
|
1362
|
-
withdrawal_address:
|
1363
|
-
vesting_contract_address:
|
1364
|
-
staking_pool_address:
|
1362
|
+
withdrawal_address: MoveAddressType;
|
1363
|
+
vesting_contract_address: MoveAddressType;
|
1364
|
+
staking_pool_address: MoveAddressType;
|
1365
1365
|
commission_percentage: bigint;
|
1366
1366
|
}
|
1367
1367
|
namespace CreateVestingContractEvent {
|
@@ -1373,8 +1373,8 @@ export declare namespace vesting {
|
|
1373
1373
|
type_arguments: [];
|
1374
1374
|
}
|
1375
1375
|
interface DistributeEvent {
|
1376
|
-
admin:
|
1377
|
-
vesting_contract_address:
|
1376
|
+
admin: MoveAddressType;
|
1377
|
+
vesting_contract_address: MoveAddressType;
|
1378
1378
|
amount: bigint;
|
1379
1379
|
}
|
1380
1380
|
namespace DistributeEvent {
|
@@ -1386,9 +1386,9 @@ export declare namespace vesting {
|
|
1386
1386
|
type_arguments: [];
|
1387
1387
|
}
|
1388
1388
|
interface ResetLockupEvent {
|
1389
|
-
admin:
|
1390
|
-
vesting_contract_address:
|
1391
|
-
staking_pool_address:
|
1389
|
+
admin: MoveAddressType;
|
1390
|
+
vesting_contract_address: MoveAddressType;
|
1391
|
+
staking_pool_address: MoveAddressType;
|
1392
1392
|
new_lockup_expiration_secs: bigint;
|
1393
1393
|
}
|
1394
1394
|
namespace ResetLockupEvent {
|
@@ -1400,11 +1400,11 @@ export declare namespace vesting {
|
|
1400
1400
|
type_arguments: [];
|
1401
1401
|
}
|
1402
1402
|
interface SetBeneficiaryEvent {
|
1403
|
-
admin:
|
1404
|
-
vesting_contract_address:
|
1405
|
-
shareholder:
|
1406
|
-
old_beneficiary:
|
1407
|
-
new_beneficiary:
|
1403
|
+
admin: MoveAddressType;
|
1404
|
+
vesting_contract_address: MoveAddressType;
|
1405
|
+
shareholder: MoveAddressType;
|
1406
|
+
old_beneficiary: MoveAddressType;
|
1407
|
+
new_beneficiary: MoveAddressType;
|
1408
1408
|
}
|
1409
1409
|
namespace SetBeneficiaryEvent {
|
1410
1410
|
const TYPE_QNAME = "0x1::vesting::SetBeneficiaryEvent";
|
@@ -1415,9 +1415,9 @@ export declare namespace vesting {
|
|
1415
1415
|
type_arguments: [];
|
1416
1416
|
}
|
1417
1417
|
interface StakingInfo {
|
1418
|
-
pool_address:
|
1419
|
-
operator:
|
1420
|
-
voter:
|
1418
|
+
pool_address: MoveAddressType;
|
1419
|
+
operator: MoveAddressType;
|
1420
|
+
voter: MoveAddressType;
|
1421
1421
|
commission_percentage: bigint;
|
1422
1422
|
}
|
1423
1423
|
namespace StakingInfo {
|
@@ -1425,8 +1425,8 @@ export declare namespace vesting {
|
|
1425
1425
|
function type(): TypeDescriptor<StakingInfo>;
|
1426
1426
|
}
|
1427
1427
|
interface TerminateEvent {
|
1428
|
-
admin:
|
1429
|
-
vesting_contract_address:
|
1428
|
+
admin: MoveAddressType;
|
1429
|
+
vesting_contract_address: MoveAddressType;
|
1430
1430
|
}
|
1431
1431
|
namespace TerminateEvent {
|
1432
1432
|
const TYPE_QNAME = "0x1::vesting::TerminateEvent";
|
@@ -1437,9 +1437,9 @@ export declare namespace vesting {
|
|
1437
1437
|
type_arguments: [];
|
1438
1438
|
}
|
1439
1439
|
interface UnlockRewardsEvent {
|
1440
|
-
admin:
|
1441
|
-
vesting_contract_address:
|
1442
|
-
staking_pool_address:
|
1440
|
+
admin: MoveAddressType;
|
1441
|
+
vesting_contract_address: MoveAddressType;
|
1442
|
+
staking_pool_address: MoveAddressType;
|
1443
1443
|
amount: bigint;
|
1444
1444
|
}
|
1445
1445
|
namespace UnlockRewardsEvent {
|
@@ -1451,11 +1451,11 @@ export declare namespace vesting {
|
|
1451
1451
|
type_arguments: [];
|
1452
1452
|
}
|
1453
1453
|
interface UpdateOperatorEvent {
|
1454
|
-
admin:
|
1455
|
-
vesting_contract_address:
|
1456
|
-
staking_pool_address:
|
1457
|
-
old_operator:
|
1458
|
-
new_operator:
|
1454
|
+
admin: MoveAddressType;
|
1455
|
+
vesting_contract_address: MoveAddressType;
|
1456
|
+
staking_pool_address: MoveAddressType;
|
1457
|
+
old_operator: MoveAddressType;
|
1458
|
+
new_operator: MoveAddressType;
|
1459
1459
|
commission_percentage: bigint;
|
1460
1460
|
}
|
1461
1461
|
namespace UpdateOperatorEvent {
|
@@ -1467,11 +1467,11 @@ export declare namespace vesting {
|
|
1467
1467
|
type_arguments: [];
|
1468
1468
|
}
|
1469
1469
|
interface UpdateVoterEvent {
|
1470
|
-
admin:
|
1471
|
-
vesting_contract_address:
|
1472
|
-
staking_pool_address:
|
1473
|
-
old_voter:
|
1474
|
-
new_voter:
|
1470
|
+
admin: MoveAddressType;
|
1471
|
+
vesting_contract_address: MoveAddressType;
|
1472
|
+
staking_pool_address: MoveAddressType;
|
1473
|
+
old_voter: MoveAddressType;
|
1474
|
+
new_voter: MoveAddressType;
|
1475
1475
|
}
|
1476
1476
|
namespace UpdateVoterEvent {
|
1477
1477
|
const TYPE_QNAME = "0x1::vesting::UpdateVoterEvent";
|
@@ -1482,9 +1482,9 @@ export declare namespace vesting {
|
|
1482
1482
|
type_arguments: [];
|
1483
1483
|
}
|
1484
1484
|
interface VestEvent {
|
1485
|
-
admin:
|
1486
|
-
vesting_contract_address:
|
1487
|
-
staking_pool_address:
|
1485
|
+
admin: MoveAddressType;
|
1486
|
+
vesting_contract_address: MoveAddressType;
|
1487
|
+
staking_pool_address: MoveAddressType;
|
1488
1488
|
period_vested: bigint;
|
1489
1489
|
amount: bigint;
|
1490
1490
|
}
|
@@ -1497,7 +1497,7 @@ export declare namespace vesting {
|
|
1497
1497
|
type_arguments: [];
|
1498
1498
|
}
|
1499
1499
|
interface VestingAccountManagement {
|
1500
|
-
roles: simple_map.SimpleMap<string,
|
1500
|
+
roles: simple_map.SimpleMap<string, MoveAddressType>;
|
1501
1501
|
}
|
1502
1502
|
namespace VestingAccountManagement {
|
1503
1503
|
const TYPE_QNAME = "0x1::vesting::VestingAccountManagement";
|
@@ -1505,11 +1505,11 @@ export declare namespace vesting {
|
|
1505
1505
|
}
|
1506
1506
|
interface VestingContract {
|
1507
1507
|
state: bigint;
|
1508
|
-
admin:
|
1508
|
+
admin: MoveAddressType;
|
1509
1509
|
grant_pool: pool_u64.Pool;
|
1510
|
-
beneficiaries: simple_map.SimpleMap<
|
1510
|
+
beneficiaries: simple_map.SimpleMap<MoveAddressType, MoveAddressType>;
|
1511
1511
|
vesting_schedule: vesting.VestingSchedule;
|
1512
|
-
withdrawal_address:
|
1512
|
+
withdrawal_address: MoveAddressType;
|
1513
1513
|
staking: vesting.StakingInfo;
|
1514
1514
|
remaining_grant: bigint;
|
1515
1515
|
signer_cap: account.SignerCapability;
|
@@ -1541,72 +1541,76 @@ export declare namespace vesting {
|
|
1541
1541
|
data_decoded: VestingSchedule;
|
1542
1542
|
type_arguments: [];
|
1543
1543
|
}
|
1544
|
-
interface AdminWithdrawPayload extends TypedFunctionPayload<[
|
1545
|
-
arguments_decoded: [
|
1544
|
+
interface AdminWithdrawPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
1545
|
+
arguments_decoded: [MoveAddressType];
|
1546
1546
|
type_arguments: [];
|
1547
1547
|
}
|
1548
|
-
interface DistributePayload extends TypedFunctionPayload<[
|
1549
|
-
arguments_decoded: [
|
1548
|
+
interface DistributePayload extends TypedFunctionPayload<[MoveAddressType]> {
|
1549
|
+
arguments_decoded: [MoveAddressType];
|
1550
1550
|
type_arguments: [];
|
1551
1551
|
}
|
1552
|
-
interface DistributeManyPayload extends TypedFunctionPayload<[
|
1553
|
-
arguments_decoded: [
|
1552
|
+
interface DistributeManyPayload extends TypedFunctionPayload<[MoveAddressType[]]> {
|
1553
|
+
arguments_decoded: [MoveAddressType[]];
|
1554
1554
|
type_arguments: [];
|
1555
1555
|
}
|
1556
|
-
interface ResetBeneficiaryPayload extends TypedFunctionPayload<[
|
1557
|
-
arguments_decoded: [
|
1556
|
+
interface ResetBeneficiaryPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
1557
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
1558
1558
|
type_arguments: [];
|
1559
1559
|
}
|
1560
|
-
interface ResetLockupPayload extends TypedFunctionPayload<[
|
1561
|
-
arguments_decoded: [
|
1560
|
+
interface ResetLockupPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
1561
|
+
arguments_decoded: [MoveAddressType];
|
1562
1562
|
type_arguments: [];
|
1563
1563
|
}
|
1564
|
-
interface SetBeneficiaryPayload extends TypedFunctionPayload<[
|
1565
|
-
|
1564
|
+
interface SetBeneficiaryPayload extends TypedFunctionPayload<[
|
1565
|
+
MoveAddressType,
|
1566
|
+
MoveAddressType,
|
1567
|
+
MoveAddressType
|
1568
|
+
]> {
|
1569
|
+
arguments_decoded: [MoveAddressType, MoveAddressType, MoveAddressType];
|
1566
1570
|
type_arguments: [];
|
1567
1571
|
}
|
1568
|
-
interface SetBeneficiaryResetterPayload extends TypedFunctionPayload<[
|
1569
|
-
arguments_decoded: [
|
1572
|
+
interface SetBeneficiaryResetterPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
1573
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
1570
1574
|
type_arguments: [];
|
1571
1575
|
}
|
1572
|
-
interface SetManagementRolePayload extends TypedFunctionPayload<[
|
1573
|
-
arguments_decoded: [
|
1576
|
+
interface SetManagementRolePayload extends TypedFunctionPayload<[MoveAddressType, string, MoveAddressType]> {
|
1577
|
+
arguments_decoded: [MoveAddressType, string, MoveAddressType];
|
1574
1578
|
type_arguments: [];
|
1575
1579
|
}
|
1576
|
-
interface TerminateVestingContractPayload extends TypedFunctionPayload<[
|
1577
|
-
arguments_decoded: [
|
1580
|
+
interface TerminateVestingContractPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
1581
|
+
arguments_decoded: [MoveAddressType];
|
1578
1582
|
type_arguments: [];
|
1579
1583
|
}
|
1580
|
-
interface UnlockRewardsPayload extends TypedFunctionPayload<[
|
1581
|
-
arguments_decoded: [
|
1584
|
+
interface UnlockRewardsPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
1585
|
+
arguments_decoded: [MoveAddressType];
|
1582
1586
|
type_arguments: [];
|
1583
1587
|
}
|
1584
|
-
interface UnlockRewardsManyPayload extends TypedFunctionPayload<[
|
1585
|
-
arguments_decoded: [
|
1588
|
+
interface UnlockRewardsManyPayload extends TypedFunctionPayload<[MoveAddressType[]]> {
|
1589
|
+
arguments_decoded: [MoveAddressType[]];
|
1586
1590
|
type_arguments: [];
|
1587
1591
|
}
|
1588
|
-
interface UpdateCommissionPercentagePayload extends TypedFunctionPayload<[
|
1589
|
-
arguments_decoded: [
|
1592
|
+
interface UpdateCommissionPercentagePayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
1593
|
+
arguments_decoded: [MoveAddressType, bigint];
|
1590
1594
|
type_arguments: [];
|
1591
1595
|
}
|
1592
|
-
interface UpdateOperatorPayload extends TypedFunctionPayload<[
|
1593
|
-
arguments_decoded: [
|
1596
|
+
interface UpdateOperatorPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType, bigint]> {
|
1597
|
+
arguments_decoded: [MoveAddressType, MoveAddressType, bigint];
|
1594
1598
|
type_arguments: [];
|
1595
1599
|
}
|
1596
|
-
interface UpdateOperatorWithSameCommissionPayload extends TypedFunctionPayload<[
|
1597
|
-
arguments_decoded: [
|
1600
|
+
interface UpdateOperatorWithSameCommissionPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
1601
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
1598
1602
|
type_arguments: [];
|
1599
1603
|
}
|
1600
|
-
interface UpdateVoterPayload extends TypedFunctionPayload<[
|
1601
|
-
arguments_decoded: [
|
1604
|
+
interface UpdateVoterPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
1605
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
1602
1606
|
type_arguments: [];
|
1603
1607
|
}
|
1604
|
-
interface VestPayload extends TypedFunctionPayload<[
|
1605
|
-
arguments_decoded: [
|
1608
|
+
interface VestPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
1609
|
+
arguments_decoded: [MoveAddressType];
|
1606
1610
|
type_arguments: [];
|
1607
1611
|
}
|
1608
|
-
interface VestManyPayload extends TypedFunctionPayload<[
|
1609
|
-
arguments_decoded: [
|
1612
|
+
interface VestManyPayload extends TypedFunctionPayload<[MoveAddressType[]]> {
|
1613
|
+
arguments_decoded: [MoveAddressType[]];
|
1610
1614
|
type_arguments: [];
|
1611
1615
|
}
|
1612
1616
|
}
|
@@ -1713,8 +1717,8 @@ export declare namespace pool_u64 {
|
|
1713
1717
|
shareholders_limit: bigint;
|
1714
1718
|
total_coins: bigint;
|
1715
1719
|
total_shares: bigint;
|
1716
|
-
shares: simple_map.SimpleMap<
|
1717
|
-
shareholders:
|
1720
|
+
shares: simple_map.SimpleMap<MoveAddressType, bigint>;
|
1721
|
+
shareholders: MoveAddressType[];
|
1718
1722
|
scaling_factor: bigint;
|
1719
1723
|
}
|
1720
1724
|
namespace Pool {
|
@@ -1770,7 +1774,7 @@ export declare class type_info extends AptosBaseProcessor {
|
|
1770
1774
|
}
|
1771
1775
|
export declare namespace type_info {
|
1772
1776
|
interface TypeInfo {
|
1773
|
-
account_address:
|
1777
|
+
account_address: MoveAddressType;
|
1774
1778
|
module_name: string;
|
1775
1779
|
struct_name: string;
|
1776
1780
|
}
|
@@ -1785,8 +1789,8 @@ export declare namespace type_info {
|
|
1785
1789
|
}
|
1786
1790
|
export declare namespace aggregator {
|
1787
1791
|
interface Aggregator {
|
1788
|
-
handle:
|
1789
|
-
key:
|
1792
|
+
handle: MoveAddressType;
|
1793
|
+
key: MoveAddressType;
|
1790
1794
|
limit: bigint;
|
1791
1795
|
}
|
1792
1796
|
namespace Aggregator {
|
@@ -1811,7 +1815,7 @@ export declare namespace aptos_coin {
|
|
1811
1815
|
function type(): TypeDescriptor<AptosCoin>;
|
1812
1816
|
}
|
1813
1817
|
interface DelegatedMintCapability {
|
1814
|
-
to:
|
1818
|
+
to: MoveAddressType;
|
1815
1819
|
}
|
1816
1820
|
namespace DelegatedMintCapability {
|
1817
1821
|
const TYPE_QNAME = "0x1::aptos_coin::DelegatedMintCapability";
|
@@ -1835,12 +1839,12 @@ export declare namespace aptos_coin {
|
|
1835
1839
|
arguments_decoded: [];
|
1836
1840
|
type_arguments: [];
|
1837
1841
|
}
|
1838
|
-
interface DelegateMintCapabilityPayload extends TypedFunctionPayload<[
|
1839
|
-
arguments_decoded: [
|
1842
|
+
interface DelegateMintCapabilityPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
1843
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
1840
1844
|
type_arguments: [];
|
1841
1845
|
}
|
1842
|
-
interface MintPayload extends TypedFunctionPayload<[
|
1843
|
-
arguments_decoded: [
|
1846
|
+
interface MintPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
1847
|
+
arguments_decoded: [MoveAddressType, bigint];
|
1844
1848
|
type_arguments: [];
|
1845
1849
|
}
|
1846
1850
|
}
|
@@ -1878,28 +1882,28 @@ export declare namespace bit_vector {
|
|
1878
1882
|
}
|
1879
1883
|
export declare namespace capability {
|
1880
1884
|
interface Cap<T0> {
|
1881
|
-
root:
|
1885
|
+
root: MoveAddressType;
|
1882
1886
|
}
|
1883
1887
|
namespace Cap {
|
1884
1888
|
const TYPE_QNAME = "0x1::capability::Cap";
|
1885
1889
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<Cap<T0>>;
|
1886
1890
|
}
|
1887
1891
|
interface CapDelegateState<T0> {
|
1888
|
-
root:
|
1892
|
+
root: MoveAddressType;
|
1889
1893
|
}
|
1890
1894
|
namespace CapDelegateState {
|
1891
1895
|
const TYPE_QNAME = "0x1::capability::CapDelegateState";
|
1892
1896
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CapDelegateState<T0>>;
|
1893
1897
|
}
|
1894
1898
|
interface CapState<T0> {
|
1895
|
-
delegates:
|
1899
|
+
delegates: MoveAddressType[];
|
1896
1900
|
}
|
1897
1901
|
namespace CapState {
|
1898
1902
|
const TYPE_QNAME = "0x1::capability::CapState";
|
1899
1903
|
function type<T0>(arg0?: TypeDescriptor<T0>): TypeDescriptor<CapState<T0>>;
|
1900
1904
|
}
|
1901
1905
|
interface LinearCap<T0> {
|
1902
|
-
root:
|
1906
|
+
root: MoveAddressType;
|
1903
1907
|
}
|
1904
1908
|
namespace LinearCap {
|
1905
1909
|
const TYPE_QNAME = "0x1::capability::LinearCap";
|
@@ -2141,8 +2145,8 @@ export declare namespace managed_coin {
|
|
2141
2145
|
arguments_decoded: [string, string, number, Boolean];
|
2142
2146
|
type_arguments: [string];
|
2143
2147
|
}
|
2144
|
-
interface MintPayload<T0 = any> extends TypedFunctionPayload<[
|
2145
|
-
arguments_decoded: [
|
2148
|
+
interface MintPayload<T0 = any> extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
2149
|
+
arguments_decoded: [MoveAddressType, bigint];
|
2146
2150
|
type_arguments: [string];
|
2147
2151
|
}
|
2148
2152
|
interface RegisterPayload<T0 = any> extends TypedFunctionPayload<[]> {
|
@@ -2297,28 +2301,28 @@ export declare namespace aptos_account {
|
|
2297
2301
|
const TYPE_QNAME = "0x1::aptos_account::DirectTransferConfig";
|
2298
2302
|
function type(): TypeDescriptor<DirectTransferConfig>;
|
2299
2303
|
}
|
2300
|
-
interface BatchTransferPayload extends TypedFunctionPayload<[
|
2301
|
-
arguments_decoded: [
|
2304
|
+
interface BatchTransferPayload extends TypedFunctionPayload<[MoveAddressType[], bigint[]]> {
|
2305
|
+
arguments_decoded: [MoveAddressType[], bigint[]];
|
2302
2306
|
type_arguments: [];
|
2303
2307
|
}
|
2304
|
-
interface BatchTransferCoinsPayload<T0 = any> extends TypedFunctionPayload<[
|
2305
|
-
arguments_decoded: [
|
2308
|
+
interface BatchTransferCoinsPayload<T0 = any> extends TypedFunctionPayload<[MoveAddressType[], bigint[]]> {
|
2309
|
+
arguments_decoded: [MoveAddressType[], bigint[]];
|
2306
2310
|
type_arguments: [string];
|
2307
2311
|
}
|
2308
|
-
interface CreateAccountPayload extends TypedFunctionPayload<[
|
2309
|
-
arguments_decoded: [
|
2312
|
+
interface CreateAccountPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2313
|
+
arguments_decoded: [MoveAddressType];
|
2310
2314
|
type_arguments: [];
|
2311
2315
|
}
|
2312
2316
|
interface SetAllowDirectCoinTransfersPayload extends TypedFunctionPayload<[Boolean]> {
|
2313
2317
|
arguments_decoded: [Boolean];
|
2314
2318
|
type_arguments: [];
|
2315
2319
|
}
|
2316
|
-
interface TransferPayload extends TypedFunctionPayload<[
|
2317
|
-
arguments_decoded: [
|
2320
|
+
interface TransferPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
2321
|
+
arguments_decoded: [MoveAddressType, bigint];
|
2318
2322
|
type_arguments: [];
|
2319
2323
|
}
|
2320
|
-
interface TransferCoinsPayload<T0 = any> extends TypedFunctionPayload<[
|
2321
|
-
arguments_decoded: [
|
2324
|
+
interface TransferCoinsPayload<T0 = any> extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
2325
|
+
arguments_decoded: [MoveAddressType, bigint];
|
2322
2326
|
type_arguments: [string];
|
2323
2327
|
}
|
2324
2328
|
}
|
@@ -2418,36 +2422,36 @@ export declare class staking_proxy extends AptosBaseProcessor {
|
|
2418
2422
|
onEntrySetVoter(func: (call: staking_proxy.SetVoterPayload, ctx: AptosContext) => void, filter?: CallFilter, fetchConfig?: Partial<MoveFetchConfig>): staking_proxy;
|
2419
2423
|
}
|
2420
2424
|
export declare namespace staking_proxy {
|
2421
|
-
interface SetOperatorPayload extends TypedFunctionPayload<[
|
2422
|
-
arguments_decoded: [
|
2425
|
+
interface SetOperatorPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
2426
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
2423
2427
|
type_arguments: [];
|
2424
2428
|
}
|
2425
|
-
interface SetStakePoolOperatorPayload extends TypedFunctionPayload<[
|
2426
|
-
arguments_decoded: [
|
2429
|
+
interface SetStakePoolOperatorPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2430
|
+
arguments_decoded: [MoveAddressType];
|
2427
2431
|
type_arguments: [];
|
2428
2432
|
}
|
2429
|
-
interface SetStakePoolVoterPayload extends TypedFunctionPayload<[
|
2430
|
-
arguments_decoded: [
|
2433
|
+
interface SetStakePoolVoterPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2434
|
+
arguments_decoded: [MoveAddressType];
|
2431
2435
|
type_arguments: [];
|
2432
2436
|
}
|
2433
|
-
interface SetStakingContractOperatorPayload extends TypedFunctionPayload<[
|
2434
|
-
arguments_decoded: [
|
2437
|
+
interface SetStakingContractOperatorPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
2438
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
2435
2439
|
type_arguments: [];
|
2436
2440
|
}
|
2437
|
-
interface SetStakingContractVoterPayload extends TypedFunctionPayload<[
|
2438
|
-
arguments_decoded: [
|
2441
|
+
interface SetStakingContractVoterPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
2442
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
2439
2443
|
type_arguments: [];
|
2440
2444
|
}
|
2441
|
-
interface SetVestingContractOperatorPayload extends TypedFunctionPayload<[
|
2442
|
-
arguments_decoded: [
|
2445
|
+
interface SetVestingContractOperatorPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
2446
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
2443
2447
|
type_arguments: [];
|
2444
2448
|
}
|
2445
|
-
interface SetVestingContractVoterPayload extends TypedFunctionPayload<[
|
2446
|
-
arguments_decoded: [
|
2449
|
+
interface SetVestingContractVoterPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
2450
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
2447
2451
|
type_arguments: [];
|
2448
2452
|
}
|
2449
|
-
interface SetVoterPayload extends TypedFunctionPayload<[
|
2450
|
-
arguments_decoded: [
|
2453
|
+
interface SetVoterPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
2454
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
2451
2455
|
type_arguments: [];
|
2452
2456
|
}
|
2453
2457
|
}
|
@@ -2685,8 +2689,8 @@ export declare class delegation_pool extends AptosBaseProcessor {
|
|
2685
2689
|
}
|
2686
2690
|
export declare namespace delegation_pool {
|
2687
2691
|
interface AddStakeEvent {
|
2688
|
-
pool_address:
|
2689
|
-
delegator_address:
|
2692
|
+
pool_address: MoveAddressType;
|
2693
|
+
delegator_address: MoveAddressType;
|
2690
2694
|
amount_added: bigint;
|
2691
2695
|
add_stake_fee: bigint;
|
2692
2696
|
}
|
@@ -2700,8 +2704,8 @@ export declare namespace delegation_pool {
|
|
2700
2704
|
}
|
2701
2705
|
interface CreateProposalEvent {
|
2702
2706
|
proposal_id: bigint;
|
2703
|
-
voter:
|
2704
|
-
delegation_pool:
|
2707
|
+
voter: MoveAddressType;
|
2708
|
+
delegation_pool: MoveAddressType;
|
2705
2709
|
}
|
2706
2710
|
namespace CreateProposalEvent {
|
2707
2711
|
const TYPE_QNAME = "0x1::delegation_pool::CreateProposalEvent";
|
@@ -2712,9 +2716,9 @@ export declare namespace delegation_pool {
|
|
2712
2716
|
type_arguments: [];
|
2713
2717
|
}
|
2714
2718
|
interface DelegateVotingPowerEvent {
|
2715
|
-
pool_address:
|
2716
|
-
delegator:
|
2717
|
-
voter:
|
2719
|
+
pool_address: MoveAddressType;
|
2720
|
+
delegator: MoveAddressType;
|
2721
|
+
voter: MoveAddressType;
|
2718
2722
|
}
|
2719
2723
|
namespace DelegateVotingPowerEvent {
|
2720
2724
|
const TYPE_QNAME = "0x1::delegation_pool::DelegateVotingPowerEvent";
|
@@ -2742,7 +2746,7 @@ export declare namespace delegation_pool {
|
|
2742
2746
|
active_shares: pool_u64_unbound.Pool;
|
2743
2747
|
observed_lockup_cycle: delegation_pool.ObservedLockupCycle;
|
2744
2748
|
inactive_shares: table.Table<delegation_pool.ObservedLockupCycle, pool_u64_unbound.Pool>;
|
2745
|
-
pending_withdrawals: table.Table<
|
2749
|
+
pending_withdrawals: table.Table<MoveAddressType, delegation_pool.ObservedLockupCycle>;
|
2746
2750
|
stake_pool_signer_cap: account.SignerCapability;
|
2747
2751
|
total_coins_inactive: bigint;
|
2748
2752
|
operator_commission_percentage: bigint;
|
@@ -2757,15 +2761,15 @@ export declare namespace delegation_pool {
|
|
2757
2761
|
function type(): TypeDescriptor<DelegationPool>;
|
2758
2762
|
}
|
2759
2763
|
interface DelegationPoolOwnership {
|
2760
|
-
pool_address:
|
2764
|
+
pool_address: MoveAddressType;
|
2761
2765
|
}
|
2762
2766
|
namespace DelegationPoolOwnership {
|
2763
2767
|
const TYPE_QNAME = "0x1::delegation_pool::DelegationPoolOwnership";
|
2764
2768
|
function type(): TypeDescriptor<DelegationPoolOwnership>;
|
2765
2769
|
}
|
2766
2770
|
interface DistributeCommissionEvent {
|
2767
|
-
pool_address:
|
2768
|
-
operator:
|
2771
|
+
pool_address: MoveAddressType;
|
2772
|
+
operator: MoveAddressType;
|
2769
2773
|
commission_active: bigint;
|
2770
2774
|
commission_pending_inactive: bigint;
|
2771
2775
|
}
|
@@ -2780,8 +2784,8 @@ export declare namespace delegation_pool {
|
|
2780
2784
|
interface GovernanceRecords {
|
2781
2785
|
votes: smart_table.SmartTable<delegation_pool.VotingRecordKey, bigint>;
|
2782
2786
|
votes_per_proposal: smart_table.SmartTable<bigint, bigint>;
|
2783
|
-
vote_delegation: smart_table.SmartTable<
|
2784
|
-
delegated_votes: smart_table.SmartTable<
|
2787
|
+
vote_delegation: smart_table.SmartTable<MoveAddressType, delegation_pool.VoteDelegation>;
|
2788
|
+
delegated_votes: smart_table.SmartTable<MoveAddressType, delegation_pool.DelegatedVotes>;
|
2785
2789
|
vote_events: event.EventHandle<delegation_pool.VoteEvent>;
|
2786
2790
|
create_proposal_events: event.EventHandle<delegation_pool.CreateProposalEvent>;
|
2787
2791
|
delegate_voting_power_events: event.EventHandle<delegation_pool.DelegateVotingPowerEvent>;
|
@@ -2802,8 +2806,8 @@ export declare namespace delegation_pool {
|
|
2802
2806
|
type_arguments: [];
|
2803
2807
|
}
|
2804
2808
|
interface ReactivateStakeEvent {
|
2805
|
-
pool_address:
|
2806
|
-
delegator_address:
|
2809
|
+
pool_address: MoveAddressType;
|
2810
|
+
delegator_address: MoveAddressType;
|
2807
2811
|
amount_reactivated: bigint;
|
2808
2812
|
}
|
2809
2813
|
namespace ReactivateStakeEvent {
|
@@ -2815,8 +2819,8 @@ export declare namespace delegation_pool {
|
|
2815
2819
|
type_arguments: [];
|
2816
2820
|
}
|
2817
2821
|
interface UnlockStakeEvent {
|
2818
|
-
pool_address:
|
2819
|
-
delegator_address:
|
2822
|
+
pool_address: MoveAddressType;
|
2823
|
+
delegator_address: MoveAddressType;
|
2820
2824
|
amount_unlocked: bigint;
|
2821
2825
|
}
|
2822
2826
|
namespace UnlockStakeEvent {
|
@@ -2828,8 +2832,8 @@ export declare namespace delegation_pool {
|
|
2828
2832
|
type_arguments: [];
|
2829
2833
|
}
|
2830
2834
|
interface VoteDelegation {
|
2831
|
-
voter:
|
2832
|
-
pending_voter:
|
2835
|
+
voter: MoveAddressType;
|
2836
|
+
pending_voter: MoveAddressType;
|
2833
2837
|
last_locked_until_secs: bigint;
|
2834
2838
|
}
|
2835
2839
|
namespace VoteDelegation {
|
@@ -2841,9 +2845,9 @@ export declare namespace delegation_pool {
|
|
2841
2845
|
type_arguments: [];
|
2842
2846
|
}
|
2843
2847
|
interface VoteEvent {
|
2844
|
-
voter:
|
2848
|
+
voter: MoveAddressType;
|
2845
2849
|
proposal_id: bigint;
|
2846
|
-
delegation_pool:
|
2850
|
+
delegation_pool: MoveAddressType;
|
2847
2851
|
num_votes: bigint;
|
2848
2852
|
should_pass: Boolean;
|
2849
2853
|
}
|
@@ -2856,7 +2860,7 @@ export declare namespace delegation_pool {
|
|
2856
2860
|
type_arguments: [];
|
2857
2861
|
}
|
2858
2862
|
interface VotingRecordKey {
|
2859
|
-
voter:
|
2863
|
+
voter: MoveAddressType;
|
2860
2864
|
proposal_id: bigint;
|
2861
2865
|
}
|
2862
2866
|
namespace VotingRecordKey {
|
@@ -2868,8 +2872,8 @@ export declare namespace delegation_pool {
|
|
2868
2872
|
type_arguments: [];
|
2869
2873
|
}
|
2870
2874
|
interface WithdrawStakeEvent {
|
2871
|
-
pool_address:
|
2872
|
-
delegator_address:
|
2875
|
+
pool_address: MoveAddressType;
|
2876
|
+
delegator_address: MoveAddressType;
|
2873
2877
|
amount_withdrawn: bigint;
|
2874
2878
|
}
|
2875
2879
|
namespace WithdrawStakeEvent {
|
@@ -2880,52 +2884,58 @@ export declare namespace delegation_pool {
|
|
2880
2884
|
data_decoded: WithdrawStakeEvent;
|
2881
2885
|
type_arguments: [];
|
2882
2886
|
}
|
2883
|
-
interface AddStakePayload extends TypedFunctionPayload<[
|
2884
|
-
arguments_decoded: [
|
2887
|
+
interface AddStakePayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
2888
|
+
arguments_decoded: [MoveAddressType, bigint];
|
2885
2889
|
type_arguments: [];
|
2886
2890
|
}
|
2887
|
-
interface CreateProposalPayload extends TypedFunctionPayload<[
|
2888
|
-
|
2891
|
+
interface CreateProposalPayload extends TypedFunctionPayload<[
|
2892
|
+
MoveAddressType,
|
2893
|
+
string,
|
2894
|
+
string,
|
2895
|
+
string,
|
2896
|
+
Boolean
|
2897
|
+
]> {
|
2898
|
+
arguments_decoded: [MoveAddressType, string, string, string, Boolean];
|
2889
2899
|
type_arguments: [];
|
2890
2900
|
}
|
2891
|
-
interface DelegateVotingPowerPayload extends TypedFunctionPayload<[
|
2892
|
-
arguments_decoded: [
|
2901
|
+
interface DelegateVotingPowerPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
2902
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
2893
2903
|
type_arguments: [];
|
2894
2904
|
}
|
2895
|
-
interface EnablePartialGovernanceVotingPayload extends TypedFunctionPayload<[
|
2896
|
-
arguments_decoded: [
|
2905
|
+
interface EnablePartialGovernanceVotingPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2906
|
+
arguments_decoded: [MoveAddressType];
|
2897
2907
|
type_arguments: [];
|
2898
2908
|
}
|
2899
2909
|
interface InitializeDelegationPoolPayload extends TypedFunctionPayload<[bigint, string]> {
|
2900
2910
|
arguments_decoded: [bigint, string];
|
2901
2911
|
type_arguments: [];
|
2902
2912
|
}
|
2903
|
-
interface ReactivateStakePayload extends TypedFunctionPayload<[
|
2904
|
-
arguments_decoded: [
|
2913
|
+
interface ReactivateStakePayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
2914
|
+
arguments_decoded: [MoveAddressType, bigint];
|
2905
2915
|
type_arguments: [];
|
2906
2916
|
}
|
2907
|
-
interface SetDelegatedVoterPayload extends TypedFunctionPayload<[
|
2908
|
-
arguments_decoded: [
|
2917
|
+
interface SetDelegatedVoterPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2918
|
+
arguments_decoded: [MoveAddressType];
|
2909
2919
|
type_arguments: [];
|
2910
2920
|
}
|
2911
|
-
interface SetOperatorPayload extends TypedFunctionPayload<[
|
2912
|
-
arguments_decoded: [
|
2921
|
+
interface SetOperatorPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2922
|
+
arguments_decoded: [MoveAddressType];
|
2913
2923
|
type_arguments: [];
|
2914
2924
|
}
|
2915
|
-
interface SynchronizeDelegationPoolPayload extends TypedFunctionPayload<[
|
2916
|
-
arguments_decoded: [
|
2925
|
+
interface SynchronizeDelegationPoolPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
2926
|
+
arguments_decoded: [MoveAddressType];
|
2917
2927
|
type_arguments: [];
|
2918
2928
|
}
|
2919
|
-
interface UnlockPayload extends TypedFunctionPayload<[
|
2920
|
-
arguments_decoded: [
|
2929
|
+
interface UnlockPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
2930
|
+
arguments_decoded: [MoveAddressType, bigint];
|
2921
2931
|
type_arguments: [];
|
2922
2932
|
}
|
2923
|
-
interface VotePayload extends TypedFunctionPayload<[
|
2924
|
-
arguments_decoded: [
|
2933
|
+
interface VotePayload extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, Boolean]> {
|
2934
|
+
arguments_decoded: [MoveAddressType, bigint, bigint, Boolean];
|
2925
2935
|
type_arguments: [];
|
2926
2936
|
}
|
2927
|
-
interface WithdrawPayload extends TypedFunctionPayload<[
|
2928
|
-
arguments_decoded: [
|
2937
|
+
interface WithdrawPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
2938
|
+
arguments_decoded: [MoveAddressType, bigint];
|
2929
2939
|
type_arguments: [];
|
2930
2940
|
}
|
2931
2941
|
}
|
@@ -2987,7 +2997,7 @@ export declare namespace transaction_fee {
|
|
2987
2997
|
}
|
2988
2998
|
interface CollectedFeesPerBlock {
|
2989
2999
|
amount: coin.AggregatableCoin<aptos_coin.AptosCoin>;
|
2990
|
-
proposer: option.Option<
|
3000
|
+
proposer: option.Option<MoveAddressType>;
|
2991
3001
|
burn_percentage: number;
|
2992
3002
|
}
|
2993
3003
|
namespace CollectedFeesPerBlock {
|
@@ -3033,8 +3043,8 @@ export declare namespace aptos_governance {
|
|
3033
3043
|
function type(): TypeDescriptor<ApprovedExecutionHashes>;
|
3034
3044
|
}
|
3035
3045
|
interface CreateProposalEvent {
|
3036
|
-
proposer:
|
3037
|
-
stake_pool:
|
3046
|
+
proposer: MoveAddressType;
|
3047
|
+
stake_pool: MoveAddressType;
|
3038
3048
|
proposal_id: bigint;
|
3039
3049
|
execution_hash: string;
|
3040
3050
|
proposal_metadata: simple_map.SimpleMap<string, string>;
|
@@ -3066,14 +3076,14 @@ export declare namespace aptos_governance {
|
|
3066
3076
|
function type(): TypeDescriptor<GovernanceEvents>;
|
3067
3077
|
}
|
3068
3078
|
interface GovernanceResponsbility {
|
3069
|
-
signer_caps: simple_map.SimpleMap<
|
3079
|
+
signer_caps: simple_map.SimpleMap<MoveAddressType, account.SignerCapability>;
|
3070
3080
|
}
|
3071
3081
|
namespace GovernanceResponsbility {
|
3072
3082
|
const TYPE_QNAME = "0x1::aptos_governance::GovernanceResponsbility";
|
3073
3083
|
function type(): TypeDescriptor<GovernanceResponsbility>;
|
3074
3084
|
}
|
3075
3085
|
interface RecordKey {
|
3076
|
-
stake_pool:
|
3086
|
+
stake_pool: MoveAddressType;
|
3077
3087
|
proposal_id: bigint;
|
3078
3088
|
}
|
3079
3089
|
namespace RecordKey {
|
@@ -3099,8 +3109,8 @@ export declare namespace aptos_governance {
|
|
3099
3109
|
}
|
3100
3110
|
interface VoteEvent {
|
3101
3111
|
proposal_id: bigint;
|
3102
|
-
voter:
|
3103
|
-
stake_pool:
|
3112
|
+
voter: MoveAddressType;
|
3113
|
+
stake_pool: MoveAddressType;
|
3104
3114
|
num_votes: bigint;
|
3105
3115
|
should_pass: Boolean;
|
3106
3116
|
}
|
@@ -3130,20 +3140,26 @@ export declare namespace aptos_governance {
|
|
3130
3140
|
arguments_decoded: [bigint];
|
3131
3141
|
type_arguments: [];
|
3132
3142
|
}
|
3133
|
-
interface CreateProposalPayload extends TypedFunctionPayload<[
|
3134
|
-
arguments_decoded: [
|
3143
|
+
interface CreateProposalPayload extends TypedFunctionPayload<[MoveAddressType, string, string, string]> {
|
3144
|
+
arguments_decoded: [MoveAddressType, string, string, string];
|
3135
3145
|
type_arguments: [];
|
3136
3146
|
}
|
3137
|
-
interface CreateProposalV2Payload extends TypedFunctionPayload<[
|
3138
|
-
|
3147
|
+
interface CreateProposalV2Payload extends TypedFunctionPayload<[
|
3148
|
+
MoveAddressType,
|
3149
|
+
string,
|
3150
|
+
string,
|
3151
|
+
string,
|
3152
|
+
Boolean
|
3153
|
+
]> {
|
3154
|
+
arguments_decoded: [MoveAddressType, string, string, string, Boolean];
|
3139
3155
|
type_arguments: [];
|
3140
3156
|
}
|
3141
|
-
interface PartialVotePayload extends TypedFunctionPayload<[
|
3142
|
-
arguments_decoded: [
|
3157
|
+
interface PartialVotePayload extends TypedFunctionPayload<[MoveAddressType, bigint, bigint, Boolean]> {
|
3158
|
+
arguments_decoded: [MoveAddressType, bigint, bigint, Boolean];
|
3143
3159
|
type_arguments: [];
|
3144
3160
|
}
|
3145
|
-
interface VotePayload extends TypedFunctionPayload<[
|
3146
|
-
arguments_decoded: [
|
3161
|
+
interface VotePayload extends TypedFunctionPayload<[MoveAddressType, bigint, Boolean]> {
|
3162
|
+
arguments_decoded: [MoveAddressType, bigint, Boolean];
|
3147
3163
|
type_arguments: [];
|
3148
3164
|
}
|
3149
3165
|
}
|
@@ -3311,7 +3327,7 @@ export declare class multisig_account extends AptosBaseProcessor {
|
|
3311
3327
|
}
|
3312
3328
|
export declare namespace multisig_account {
|
3313
3329
|
interface AddOwnersEvent {
|
3314
|
-
owners_added:
|
3330
|
+
owners_added: MoveAddressType[];
|
3315
3331
|
}
|
3316
3332
|
namespace AddOwnersEvent {
|
3317
3333
|
const TYPE_QNAME = "0x1::multisig_account::AddOwnersEvent";
|
@@ -3322,7 +3338,7 @@ export declare namespace multisig_account {
|
|
3322
3338
|
type_arguments: [];
|
3323
3339
|
}
|
3324
3340
|
interface CreateTransactionEvent {
|
3325
|
-
creator:
|
3341
|
+
creator: MoveAddressType;
|
3326
3342
|
sequence_number: bigint;
|
3327
3343
|
transaction: multisig_account.MultisigTransaction;
|
3328
3344
|
}
|
@@ -3337,7 +3353,7 @@ export declare namespace multisig_account {
|
|
3337
3353
|
interface ExecuteRejectedTransactionEvent {
|
3338
3354
|
sequence_number: bigint;
|
3339
3355
|
num_rejections: bigint;
|
3340
|
-
executor:
|
3356
|
+
executor: MoveAddressType;
|
3341
3357
|
}
|
3342
3358
|
namespace ExecuteRejectedTransactionEvent {
|
3343
3359
|
const TYPE_QNAME = "0x1::multisig_account::ExecuteRejectedTransactionEvent";
|
@@ -3373,7 +3389,7 @@ export declare namespace multisig_account {
|
|
3373
3389
|
type_arguments: [];
|
3374
3390
|
}
|
3375
3391
|
interface MultisigAccount {
|
3376
|
-
owners:
|
3392
|
+
owners: MoveAddressType[];
|
3377
3393
|
num_signatures_required: bigint;
|
3378
3394
|
transactions: table.Table<bigint, multisig_account.MultisigTransaction>;
|
3379
3395
|
last_executed_sequence_number: bigint;
|
@@ -3396,9 +3412,9 @@ export declare namespace multisig_account {
|
|
3396
3412
|
}
|
3397
3413
|
interface MultisigAccountCreationMessage {
|
3398
3414
|
chain_id: number;
|
3399
|
-
account_address:
|
3415
|
+
account_address: MoveAddressType;
|
3400
3416
|
sequence_number: bigint;
|
3401
|
-
owners:
|
3417
|
+
owners: MoveAddressType[];
|
3402
3418
|
num_signatures_required: bigint;
|
3403
3419
|
}
|
3404
3420
|
namespace MultisigAccountCreationMessage {
|
@@ -3407,9 +3423,9 @@ export declare namespace multisig_account {
|
|
3407
3423
|
}
|
3408
3424
|
interface MultisigAccountCreationWithAuthKeyRevocationMessage {
|
3409
3425
|
chain_id: number;
|
3410
|
-
account_address:
|
3426
|
+
account_address: MoveAddressType;
|
3411
3427
|
sequence_number: bigint;
|
3412
|
-
owners:
|
3428
|
+
owners: MoveAddressType[];
|
3413
3429
|
num_signatures_required: bigint;
|
3414
3430
|
}
|
3415
3431
|
namespace MultisigAccountCreationWithAuthKeyRevocationMessage {
|
@@ -3419,8 +3435,8 @@ export declare namespace multisig_account {
|
|
3419
3435
|
interface MultisigTransaction {
|
3420
3436
|
payload: option.Option<string>;
|
3421
3437
|
payload_hash: option.Option<string>;
|
3422
|
-
votes: simple_map.SimpleMap<
|
3423
|
-
creator:
|
3438
|
+
votes: simple_map.SimpleMap<MoveAddressType, Boolean>;
|
3439
|
+
creator: MoveAddressType;
|
3424
3440
|
creation_time_secs: bigint;
|
3425
3441
|
}
|
3426
3442
|
namespace MultisigTransaction {
|
@@ -3432,7 +3448,7 @@ export declare namespace multisig_account {
|
|
3432
3448
|
type_arguments: [];
|
3433
3449
|
}
|
3434
3450
|
interface RemoveOwnersEvent {
|
3435
|
-
owners_removed:
|
3451
|
+
owners_removed: MoveAddressType[];
|
3436
3452
|
}
|
3437
3453
|
namespace RemoveOwnersEvent {
|
3438
3454
|
const TYPE_QNAME = "0x1::multisig_account::RemoveOwnersEvent";
|
@@ -3443,7 +3459,7 @@ export declare namespace multisig_account {
|
|
3443
3459
|
type_arguments: [];
|
3444
3460
|
}
|
3445
3461
|
interface TransactionExecutionFailedEvent {
|
3446
|
-
executor:
|
3462
|
+
executor: MoveAddressType;
|
3447
3463
|
sequence_number: bigint;
|
3448
3464
|
transaction_payload: string;
|
3449
3465
|
num_approvals: bigint;
|
@@ -3458,7 +3474,7 @@ export declare namespace multisig_account {
|
|
3458
3474
|
type_arguments: [];
|
3459
3475
|
}
|
3460
3476
|
interface TransactionExecutionSucceededEvent {
|
3461
|
-
executor:
|
3477
|
+
executor: MoveAddressType;
|
3462
3478
|
sequence_number: bigint;
|
3463
3479
|
transaction_payload: string;
|
3464
3480
|
num_approvals: bigint;
|
@@ -3484,7 +3500,7 @@ export declare namespace multisig_account {
|
|
3484
3500
|
type_arguments: [];
|
3485
3501
|
}
|
3486
3502
|
interface VoteEvent {
|
3487
|
-
owner:
|
3503
|
+
owner: MoveAddressType;
|
3488
3504
|
sequence_number: bigint;
|
3489
3505
|
approved: Boolean;
|
3490
3506
|
}
|
@@ -3496,37 +3512,37 @@ export declare namespace multisig_account {
|
|
3496
3512
|
data_decoded: VoteEvent;
|
3497
3513
|
type_arguments: [];
|
3498
3514
|
}
|
3499
|
-
interface AddOwnerPayload extends TypedFunctionPayload<[
|
3500
|
-
arguments_decoded: [
|
3515
|
+
interface AddOwnerPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
3516
|
+
arguments_decoded: [MoveAddressType];
|
3501
3517
|
type_arguments: [];
|
3502
3518
|
}
|
3503
|
-
interface AddOwnersPayload extends TypedFunctionPayload<[
|
3504
|
-
arguments_decoded: [
|
3519
|
+
interface AddOwnersPayload extends TypedFunctionPayload<[MoveAddressType[]]> {
|
3520
|
+
arguments_decoded: [MoveAddressType[]];
|
3505
3521
|
type_arguments: [];
|
3506
3522
|
}
|
3507
|
-
interface AddOwnersAndUpdateSignaturesRequiredPayload extends TypedFunctionPayload<[
|
3508
|
-
arguments_decoded: [
|
3523
|
+
interface AddOwnersAndUpdateSignaturesRequiredPayload extends TypedFunctionPayload<[MoveAddressType[], bigint]> {
|
3524
|
+
arguments_decoded: [MoveAddressType[], bigint];
|
3509
3525
|
type_arguments: [];
|
3510
3526
|
}
|
3511
|
-
interface ApproveTransactionPayload extends TypedFunctionPayload<[
|
3512
|
-
arguments_decoded: [
|
3527
|
+
interface ApproveTransactionPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
3528
|
+
arguments_decoded: [MoveAddressType, bigint];
|
3513
3529
|
type_arguments: [];
|
3514
3530
|
}
|
3515
3531
|
interface CreatePayload extends TypedFunctionPayload<[bigint, string[], string[]]> {
|
3516
3532
|
arguments_decoded: [bigint, string[], string[]];
|
3517
3533
|
type_arguments: [];
|
3518
3534
|
}
|
3519
|
-
interface CreateTransactionPayload extends TypedFunctionPayload<[
|
3520
|
-
arguments_decoded: [
|
3535
|
+
interface CreateTransactionPayload extends TypedFunctionPayload<[MoveAddressType, string]> {
|
3536
|
+
arguments_decoded: [MoveAddressType, string];
|
3521
3537
|
type_arguments: [];
|
3522
3538
|
}
|
3523
|
-
interface CreateTransactionWithHashPayload extends TypedFunctionPayload<[
|
3524
|
-
arguments_decoded: [
|
3539
|
+
interface CreateTransactionWithHashPayload extends TypedFunctionPayload<[MoveAddressType, string]> {
|
3540
|
+
arguments_decoded: [MoveAddressType, string];
|
3525
3541
|
type_arguments: [];
|
3526
3542
|
}
|
3527
3543
|
interface CreateWithExistingAccountPayload extends TypedFunctionPayload<[
|
3528
|
-
|
3529
|
-
|
3544
|
+
MoveAddressType,
|
3545
|
+
MoveAddressType[],
|
3530
3546
|
bigint,
|
3531
3547
|
number,
|
3532
3548
|
string,
|
@@ -3535,8 +3551,8 @@ export declare namespace multisig_account {
|
|
3535
3551
|
string[]
|
3536
3552
|
]> {
|
3537
3553
|
arguments_decoded: [
|
3538
|
-
|
3539
|
-
|
3554
|
+
MoveAddressType,
|
3555
|
+
MoveAddressType[],
|
3540
3556
|
bigint,
|
3541
3557
|
number,
|
3542
3558
|
string,
|
@@ -3547,8 +3563,8 @@ export declare namespace multisig_account {
|
|
3547
3563
|
type_arguments: [];
|
3548
3564
|
}
|
3549
3565
|
interface CreateWithExistingAccountAndRevokeAuthKeyPayload extends TypedFunctionPayload<[
|
3550
|
-
|
3551
|
-
|
3566
|
+
MoveAddressType,
|
3567
|
+
MoveAddressType[],
|
3552
3568
|
bigint,
|
3553
3569
|
number,
|
3554
3570
|
string,
|
@@ -3557,8 +3573,8 @@ export declare namespace multisig_account {
|
|
3557
3573
|
string[]
|
3558
3574
|
]> {
|
3559
3575
|
arguments_decoded: [
|
3560
|
-
|
3561
|
-
|
3576
|
+
MoveAddressType,
|
3577
|
+
MoveAddressType[],
|
3562
3578
|
bigint,
|
3563
3579
|
number,
|
3564
3580
|
string,
|
@@ -3568,40 +3584,54 @@ export declare namespace multisig_account {
|
|
3568
3584
|
];
|
3569
3585
|
type_arguments: [];
|
3570
3586
|
}
|
3571
|
-
interface CreateWithOwnersPayload extends TypedFunctionPayload<[
|
3572
|
-
|
3587
|
+
interface CreateWithOwnersPayload extends TypedFunctionPayload<[
|
3588
|
+
MoveAddressType[],
|
3589
|
+
bigint,
|
3590
|
+
string[],
|
3591
|
+
string[]
|
3592
|
+
]> {
|
3593
|
+
arguments_decoded: [MoveAddressType[], bigint, string[], string[]];
|
3573
3594
|
type_arguments: [];
|
3574
3595
|
}
|
3575
|
-
interface CreateWithOwnersThenRemoveBootstrapperPayload extends TypedFunctionPayload<[
|
3576
|
-
|
3596
|
+
interface CreateWithOwnersThenRemoveBootstrapperPayload extends TypedFunctionPayload<[
|
3597
|
+
MoveAddressType[],
|
3598
|
+
bigint,
|
3599
|
+
string[],
|
3600
|
+
string[]
|
3601
|
+
]> {
|
3602
|
+
arguments_decoded: [MoveAddressType[], bigint, string[], string[]];
|
3577
3603
|
type_arguments: [];
|
3578
3604
|
}
|
3579
|
-
interface ExecuteRejectedTransactionPayload extends TypedFunctionPayload<[
|
3580
|
-
arguments_decoded: [
|
3605
|
+
interface ExecuteRejectedTransactionPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
3606
|
+
arguments_decoded: [MoveAddressType];
|
3581
3607
|
type_arguments: [];
|
3582
3608
|
}
|
3583
|
-
interface RejectTransactionPayload extends TypedFunctionPayload<[
|
3584
|
-
arguments_decoded: [
|
3609
|
+
interface RejectTransactionPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
3610
|
+
arguments_decoded: [MoveAddressType, bigint];
|
3585
3611
|
type_arguments: [];
|
3586
3612
|
}
|
3587
|
-
interface RemoveOwnerPayload extends TypedFunctionPayload<[
|
3588
|
-
arguments_decoded: [
|
3613
|
+
interface RemoveOwnerPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
3614
|
+
arguments_decoded: [MoveAddressType];
|
3589
3615
|
type_arguments: [];
|
3590
3616
|
}
|
3591
|
-
interface RemoveOwnersPayload extends TypedFunctionPayload<[
|
3592
|
-
arguments_decoded: [
|
3617
|
+
interface RemoveOwnersPayload extends TypedFunctionPayload<[MoveAddressType[]]> {
|
3618
|
+
arguments_decoded: [MoveAddressType[]];
|
3593
3619
|
type_arguments: [];
|
3594
3620
|
}
|
3595
|
-
interface SwapOwnerPayload extends TypedFunctionPayload<[
|
3596
|
-
arguments_decoded: [
|
3621
|
+
interface SwapOwnerPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
3622
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
3597
3623
|
type_arguments: [];
|
3598
3624
|
}
|
3599
|
-
interface SwapOwnersPayload extends TypedFunctionPayload<[
|
3600
|
-
arguments_decoded: [
|
3625
|
+
interface SwapOwnersPayload extends TypedFunctionPayload<[MoveAddressType[], MoveAddressType[]]> {
|
3626
|
+
arguments_decoded: [MoveAddressType[], MoveAddressType[]];
|
3601
3627
|
type_arguments: [];
|
3602
3628
|
}
|
3603
|
-
interface SwapOwnersAndUpdateSignaturesRequiredPayload extends TypedFunctionPayload<[
|
3604
|
-
|
3629
|
+
interface SwapOwnersAndUpdateSignaturesRequiredPayload extends TypedFunctionPayload<[
|
3630
|
+
MoveAddressType[],
|
3631
|
+
MoveAddressType[],
|
3632
|
+
bigint
|
3633
|
+
]> {
|
3634
|
+
arguments_decoded: [MoveAddressType[], MoveAddressType[], bigint];
|
3605
3635
|
type_arguments: [];
|
3606
3636
|
}
|
3607
3637
|
interface UpdateMetadataPayload extends TypedFunctionPayload<[string[], string[]]> {
|
@@ -3612,8 +3642,8 @@ export declare namespace multisig_account {
|
|
3612
3642
|
arguments_decoded: [bigint];
|
3613
3643
|
type_arguments: [];
|
3614
3644
|
}
|
3615
|
-
interface VoteTransanctionPayload extends TypedFunctionPayload<[
|
3616
|
-
arguments_decoded: [
|
3645
|
+
interface VoteTransanctionPayload extends TypedFunctionPayload<[MoveAddressType, bigint, Boolean]> {
|
3646
|
+
arguments_decoded: [MoveAddressType, bigint, Boolean];
|
3617
3647
|
type_arguments: [];
|
3618
3648
|
}
|
3619
3649
|
}
|
@@ -3621,7 +3651,7 @@ export declare namespace pool_u64_unbound {
|
|
3621
3651
|
interface Pool {
|
3622
3652
|
total_coins: bigint;
|
3623
3653
|
total_shares: bigint;
|
3624
|
-
shares: table_with_length.TableWithLength<
|
3654
|
+
shares: table_with_length.TableWithLength<MoveAddressType, bigint>;
|
3625
3655
|
scaling_factor: bigint;
|
3626
3656
|
}
|
3627
3657
|
namespace Pool {
|
@@ -3639,7 +3669,7 @@ export declare class resource_account extends AptosBaseProcessor {
|
|
3639
3669
|
}
|
3640
3670
|
export declare namespace resource_account {
|
3641
3671
|
interface Container {
|
3642
|
-
store: simple_map.SimpleMap<
|
3672
|
+
store: simple_map.SimpleMap<MoveAddressType, account.SignerCapability>;
|
3643
3673
|
}
|
3644
3674
|
namespace Container {
|
3645
3675
|
const TYPE_QNAME = "0x1::resource_account::Container";
|
@@ -3686,8 +3716,8 @@ export declare class staking_contract extends AptosBaseProcessor {
|
|
3686
3716
|
}
|
3687
3717
|
export declare namespace staking_contract {
|
3688
3718
|
interface AddDistributionEvent {
|
3689
|
-
operator:
|
3690
|
-
pool_address:
|
3719
|
+
operator: MoveAddressType;
|
3720
|
+
pool_address: MoveAddressType;
|
3691
3721
|
amount: bigint;
|
3692
3722
|
}
|
3693
3723
|
namespace AddDistributionEvent {
|
@@ -3699,8 +3729,8 @@ export declare namespace staking_contract {
|
|
3699
3729
|
type_arguments: [];
|
3700
3730
|
}
|
3701
3731
|
interface AddStakeEvent {
|
3702
|
-
operator:
|
3703
|
-
pool_address:
|
3732
|
+
operator: MoveAddressType;
|
3733
|
+
pool_address: MoveAddressType;
|
3704
3734
|
amount: bigint;
|
3705
3735
|
}
|
3706
3736
|
namespace AddStakeEvent {
|
@@ -3712,9 +3742,9 @@ export declare namespace staking_contract {
|
|
3712
3742
|
type_arguments: [];
|
3713
3743
|
}
|
3714
3744
|
interface CreateStakingContractEvent {
|
3715
|
-
operator:
|
3716
|
-
voter:
|
3717
|
-
pool_address:
|
3745
|
+
operator: MoveAddressType;
|
3746
|
+
voter: MoveAddressType;
|
3747
|
+
pool_address: MoveAddressType;
|
3718
3748
|
principal: bigint;
|
3719
3749
|
commission_percentage: bigint;
|
3720
3750
|
}
|
@@ -3727,9 +3757,9 @@ export declare namespace staking_contract {
|
|
3727
3757
|
type_arguments: [];
|
3728
3758
|
}
|
3729
3759
|
interface DistributeEvent {
|
3730
|
-
operator:
|
3731
|
-
pool_address:
|
3732
|
-
recipient:
|
3760
|
+
operator: MoveAddressType;
|
3761
|
+
pool_address: MoveAddressType;
|
3762
|
+
recipient: MoveAddressType;
|
3733
3763
|
amount: bigint;
|
3734
3764
|
}
|
3735
3765
|
namespace DistributeEvent {
|
@@ -3741,8 +3771,8 @@ export declare namespace staking_contract {
|
|
3741
3771
|
type_arguments: [];
|
3742
3772
|
}
|
3743
3773
|
interface RequestCommissionEvent {
|
3744
|
-
operator:
|
3745
|
-
pool_address:
|
3774
|
+
operator: MoveAddressType;
|
3775
|
+
pool_address: MoveAddressType;
|
3746
3776
|
accumulated_rewards: bigint;
|
3747
3777
|
commission_amount: bigint;
|
3748
3778
|
}
|
@@ -3755,8 +3785,8 @@ export declare namespace staking_contract {
|
|
3755
3785
|
type_arguments: [];
|
3756
3786
|
}
|
3757
3787
|
interface ResetLockupEvent {
|
3758
|
-
operator:
|
3759
|
-
pool_address:
|
3788
|
+
operator: MoveAddressType;
|
3789
|
+
pool_address: MoveAddressType;
|
3760
3790
|
}
|
3761
3791
|
namespace ResetLockupEvent {
|
3762
3792
|
const TYPE_QNAME = "0x1::staking_contract::ResetLockupEvent";
|
@@ -3768,7 +3798,7 @@ export declare namespace staking_contract {
|
|
3768
3798
|
}
|
3769
3799
|
interface StakingContract {
|
3770
3800
|
principal: bigint;
|
3771
|
-
pool_address:
|
3801
|
+
pool_address: MoveAddressType;
|
3772
3802
|
owner_cap: stake.OwnerCapability;
|
3773
3803
|
commission_percentage: bigint;
|
3774
3804
|
distribution_pool: pool_u64.Pool;
|
@@ -3793,7 +3823,7 @@ export declare namespace staking_contract {
|
|
3793
3823
|
function type(): TypeDescriptor<StakingGroupUpdateCommissionEvent>;
|
3794
3824
|
}
|
3795
3825
|
interface Store {
|
3796
|
-
staking_contracts: simple_map.SimpleMap<
|
3826
|
+
staking_contracts: simple_map.SimpleMap<MoveAddressType, staking_contract.StakingContract>;
|
3797
3827
|
create_staking_contract_events: event.EventHandle<staking_contract.CreateStakingContractEvent>;
|
3798
3828
|
update_voter_events: event.EventHandle<staking_contract.UpdateVoterEvent>;
|
3799
3829
|
reset_lockup_events: event.EventHandle<staking_contract.ResetLockupEvent>;
|
@@ -3809,9 +3839,9 @@ export declare namespace staking_contract {
|
|
3809
3839
|
function type(): TypeDescriptor<Store>;
|
3810
3840
|
}
|
3811
3841
|
interface SwitchOperatorEvent {
|
3812
|
-
old_operator:
|
3813
|
-
new_operator:
|
3814
|
-
pool_address:
|
3842
|
+
old_operator: MoveAddressType;
|
3843
|
+
new_operator: MoveAddressType;
|
3844
|
+
pool_address: MoveAddressType;
|
3815
3845
|
}
|
3816
3846
|
namespace SwitchOperatorEvent {
|
3817
3847
|
const TYPE_QNAME = "0x1::staking_contract::SwitchOperatorEvent";
|
@@ -3822,8 +3852,8 @@ export declare namespace staking_contract {
|
|
3822
3852
|
type_arguments: [];
|
3823
3853
|
}
|
3824
3854
|
interface UnlockStakeEvent {
|
3825
|
-
operator:
|
3826
|
-
pool_address:
|
3855
|
+
operator: MoveAddressType;
|
3856
|
+
pool_address: MoveAddressType;
|
3827
3857
|
amount: bigint;
|
3828
3858
|
commission_paid: bigint;
|
3829
3859
|
}
|
@@ -3836,8 +3866,8 @@ export declare namespace staking_contract {
|
|
3836
3866
|
type_arguments: [];
|
3837
3867
|
}
|
3838
3868
|
interface UpdateCommissionEvent {
|
3839
|
-
staker:
|
3840
|
-
operator:
|
3869
|
+
staker: MoveAddressType;
|
3870
|
+
operator: MoveAddressType;
|
3841
3871
|
old_commission_percentage: bigint;
|
3842
3872
|
new_commission_percentage: bigint;
|
3843
3873
|
}
|
@@ -3850,10 +3880,10 @@ export declare namespace staking_contract {
|
|
3850
3880
|
type_arguments: [];
|
3851
3881
|
}
|
3852
3882
|
interface UpdateVoterEvent {
|
3853
|
-
operator:
|
3854
|
-
pool_address:
|
3855
|
-
old_voter:
|
3856
|
-
new_voter:
|
3883
|
+
operator: MoveAddressType;
|
3884
|
+
pool_address: MoveAddressType;
|
3885
|
+
old_voter: MoveAddressType;
|
3886
|
+
new_voter: MoveAddressType;
|
3857
3887
|
}
|
3858
3888
|
namespace UpdateVoterEvent {
|
3859
3889
|
const TYPE_QNAME = "0x1::staking_contract::UpdateVoterEvent";
|
@@ -3863,48 +3893,60 @@ export declare namespace staking_contract {
|
|
3863
3893
|
data_decoded: UpdateVoterEvent;
|
3864
3894
|
type_arguments: [];
|
3865
3895
|
}
|
3866
|
-
interface AddStakePayload extends TypedFunctionPayload<[
|
3867
|
-
arguments_decoded: [
|
3896
|
+
interface AddStakePayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
3897
|
+
arguments_decoded: [MoveAddressType, bigint];
|
3868
3898
|
type_arguments: [];
|
3869
3899
|
}
|
3870
|
-
interface CreateStakingContractPayload extends TypedFunctionPayload<[
|
3871
|
-
|
3900
|
+
interface CreateStakingContractPayload extends TypedFunctionPayload<[
|
3901
|
+
MoveAddressType,
|
3902
|
+
MoveAddressType,
|
3903
|
+
bigint,
|
3904
|
+
bigint,
|
3905
|
+
string
|
3906
|
+
]> {
|
3907
|
+
arguments_decoded: [
|
3908
|
+
MoveAddressType,
|
3909
|
+
MoveAddressType,
|
3910
|
+
bigint,
|
3911
|
+
bigint,
|
3912
|
+
string
|
3913
|
+
];
|
3872
3914
|
type_arguments: [];
|
3873
3915
|
}
|
3874
|
-
interface DistributePayload extends TypedFunctionPayload<[
|
3875
|
-
arguments_decoded: [
|
3916
|
+
interface DistributePayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
3917
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
3876
3918
|
type_arguments: [];
|
3877
3919
|
}
|
3878
|
-
interface RequestCommissionPayload extends TypedFunctionPayload<[
|
3879
|
-
arguments_decoded: [
|
3920
|
+
interface RequestCommissionPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
3921
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
3880
3922
|
type_arguments: [];
|
3881
3923
|
}
|
3882
|
-
interface ResetLockupPayload extends TypedFunctionPayload<[
|
3883
|
-
arguments_decoded: [
|
3924
|
+
interface ResetLockupPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
3925
|
+
arguments_decoded: [MoveAddressType];
|
3884
3926
|
type_arguments: [];
|
3885
3927
|
}
|
3886
|
-
interface SwitchOperatorPayload extends TypedFunctionPayload<[
|
3887
|
-
arguments_decoded: [
|
3928
|
+
interface SwitchOperatorPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType, bigint]> {
|
3929
|
+
arguments_decoded: [MoveAddressType, MoveAddressType, bigint];
|
3888
3930
|
type_arguments: [];
|
3889
3931
|
}
|
3890
|
-
interface SwitchOperatorWithSameCommissionPayload extends TypedFunctionPayload<[
|
3891
|
-
arguments_decoded: [
|
3932
|
+
interface SwitchOperatorWithSameCommissionPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
3933
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
3892
3934
|
type_arguments: [];
|
3893
3935
|
}
|
3894
|
-
interface UnlockRewardsPayload extends TypedFunctionPayload<[
|
3895
|
-
arguments_decoded: [
|
3936
|
+
interface UnlockRewardsPayload extends TypedFunctionPayload<[MoveAddressType]> {
|
3937
|
+
arguments_decoded: [MoveAddressType];
|
3896
3938
|
type_arguments: [];
|
3897
3939
|
}
|
3898
|
-
interface UnlockStakePayload extends TypedFunctionPayload<[
|
3899
|
-
arguments_decoded: [
|
3940
|
+
interface UnlockStakePayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
3941
|
+
arguments_decoded: [MoveAddressType, bigint];
|
3900
3942
|
type_arguments: [];
|
3901
3943
|
}
|
3902
|
-
interface UpdateCommisionPayload extends TypedFunctionPayload<[
|
3903
|
-
arguments_decoded: [
|
3944
|
+
interface UpdateCommisionPayload extends TypedFunctionPayload<[MoveAddressType, bigint]> {
|
3945
|
+
arguments_decoded: [MoveAddressType, bigint];
|
3904
3946
|
type_arguments: [];
|
3905
3947
|
}
|
3906
|
-
interface UpdateVoterPayload extends TypedFunctionPayload<[
|
3907
|
-
arguments_decoded: [
|
3948
|
+
interface UpdateVoterPayload extends TypedFunctionPayload<[MoveAddressType, MoveAddressType]> {
|
3949
|
+
arguments_decoded: [MoveAddressType, MoveAddressType];
|
3908
3950
|
type_arguments: [];
|
3909
3951
|
}
|
3910
3952
|
}
|
@@ -3921,7 +3963,7 @@ export declare namespace table_with_length {
|
|
3921
3963
|
}
|
3922
3964
|
export declare namespace aggregator_factory {
|
3923
3965
|
interface AggregatorFactory {
|
3924
|
-
phantom_table: table.Table<
|
3966
|
+
phantom_table: table.Table<MoveAddressType, bigint>;
|
3925
3967
|
}
|
3926
3968
|
namespace AggregatorFactory {
|
3927
3969
|
const TYPE_QNAME = "0x1::aggregator_factory::AggregatorFactory";
|
@@ -3973,7 +4015,7 @@ export declare class transaction_context extends AptosBaseProcessor {
|
|
3973
4015
|
}
|
3974
4016
|
export declare namespace transaction_context {
|
3975
4017
|
interface AUID {
|
3976
|
-
unique_address:
|
4018
|
+
unique_address: MoveAddressType;
|
3977
4019
|
}
|
3978
4020
|
namespace AUID {
|
3979
4021
|
const TYPE_QNAME = "0x1::transaction_context::AUID";
|
@@ -4047,14 +4089,18 @@ export declare namespace primary_fungible_store {
|
|
4047
4089
|
const TYPE_QNAME = "0x1::primary_fungible_store::DeriveRefPod";
|
4048
4090
|
function type(): TypeDescriptor<DeriveRefPod>;
|
4049
4091
|
}
|
4050
|
-
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[
|
4051
|
-
|
4092
|
+
interface TransferPayload<T0 = any> extends TypedFunctionPayload<[
|
4093
|
+
object_.Object<T0>,
|
4094
|
+
MoveAddressType,
|
4095
|
+
bigint
|
4096
|
+
]> {
|
4097
|
+
arguments_decoded: [object_.Object<T0>, MoveAddressType, bigint];
|
4052
4098
|
type_arguments: [string];
|
4053
4099
|
}
|
4054
4100
|
}
|
4055
4101
|
export declare namespace transaction_validation {
|
4056
4102
|
interface TransactionValidation {
|
4057
|
-
module_addr:
|
4103
|
+
module_addr: MoveAddressType;
|
4058
4104
|
module_name: string;
|
4059
4105
|
script_prologue_name: string;
|
4060
4106
|
module_prologue_name: string;
|