@sentio/sdk 1.26.2 → 1.26.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/types.d.ts +2 -2
- package/lib/aptos/types.js +6 -6
- package/lib/aptos/types.js.map +1 -1
- package/lib/aptos-codegen/codegen.js +1 -1
- package/lib/aptos-codegen/codegen.js.map +1 -1
- package/lib/builtin/aptos/0x1.d.ts +171 -171
- package/lib/builtin/aptos/0x1.js +171 -171
- package/lib/builtin/aptos/0x1.js.map +1 -1
- package/lib/builtin/aptos/0x3.d.ts +31 -31
- package/lib/builtin/aptos/0x3.js +31 -31
- package/lib/builtin/aptos/0x3.js.map +1 -1
- package/lib/tests/types/aptos/souffle.d.ts +14 -14
- package/lib/tests/types/aptos/souffle.js +14 -14
- package/lib/tests/types/aptos/souffle.js.map +1 -1
- package/package.json +1 -1
- package/src/aptos/types.ts +6 -6
- package/src/aptos-codegen/codegen.ts +1 -1
- package/src/builtin/aptos/0x1.ts +171 -171
- package/src/builtin/aptos/0x3.ts +31 -31
- package/src/tests/types/aptos/souffle.ts +14 -14
package/lib/builtin/aptos/0x1.js
CHANGED
|
@@ -10,7 +10,7 @@ const sdk_1 = require("@sentio/sdk");
|
|
|
10
10
|
var acl;
|
|
11
11
|
(function (acl) {
|
|
12
12
|
class ACL {
|
|
13
|
-
static
|
|
13
|
+
static TYPE_QNAME = "0x1::acl::ACL";
|
|
14
14
|
list;
|
|
15
15
|
}
|
|
16
16
|
acl.ACL = ACL;
|
|
@@ -23,7 +23,7 @@ var acl;
|
|
|
23
23
|
var any;
|
|
24
24
|
(function (any) {
|
|
25
25
|
class Any {
|
|
26
|
-
static
|
|
26
|
+
static TYPE_QNAME = "0x1::any::Any";
|
|
27
27
|
type_name;
|
|
28
28
|
data;
|
|
29
29
|
}
|
|
@@ -67,13 +67,13 @@ class code extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
67
67
|
exports.code = code;
|
|
68
68
|
(function (code) {
|
|
69
69
|
class AllowedDep {
|
|
70
|
-
static
|
|
70
|
+
static TYPE_QNAME = "0x1::code::AllowedDep";
|
|
71
71
|
account;
|
|
72
72
|
module_name;
|
|
73
73
|
}
|
|
74
74
|
code.AllowedDep = AllowedDep;
|
|
75
75
|
class ModuleMetadata {
|
|
76
|
-
static
|
|
76
|
+
static TYPE_QNAME = "0x1::code::ModuleMetadata";
|
|
77
77
|
name;
|
|
78
78
|
source;
|
|
79
79
|
source_map;
|
|
@@ -81,13 +81,13 @@ exports.code = code;
|
|
|
81
81
|
}
|
|
82
82
|
code.ModuleMetadata = ModuleMetadata;
|
|
83
83
|
class PackageDep {
|
|
84
|
-
static
|
|
84
|
+
static TYPE_QNAME = "0x1::code::PackageDep";
|
|
85
85
|
account;
|
|
86
86
|
package_name;
|
|
87
87
|
}
|
|
88
88
|
code.PackageDep = PackageDep;
|
|
89
89
|
class PackageMetadata {
|
|
90
|
-
static
|
|
90
|
+
static TYPE_QNAME = "0x1::code::PackageMetadata";
|
|
91
91
|
name;
|
|
92
92
|
upgrade_policy;
|
|
93
93
|
upgrade_number;
|
|
@@ -99,12 +99,12 @@ exports.code = code;
|
|
|
99
99
|
}
|
|
100
100
|
code.PackageMetadata = PackageMetadata;
|
|
101
101
|
class PackageRegistry {
|
|
102
|
-
static
|
|
102
|
+
static TYPE_QNAME = "0x1::code::PackageRegistry";
|
|
103
103
|
packages;
|
|
104
104
|
}
|
|
105
105
|
code.PackageRegistry = PackageRegistry;
|
|
106
106
|
class UpgradePolicy {
|
|
107
|
-
static
|
|
107
|
+
static TYPE_QNAME = "0x1::code::UpgradePolicy";
|
|
108
108
|
policy;
|
|
109
109
|
}
|
|
110
110
|
code.UpgradePolicy = UpgradePolicy;
|
|
@@ -172,17 +172,17 @@ class coin extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
172
172
|
exports.coin = coin;
|
|
173
173
|
(function (coin) {
|
|
174
174
|
class BurnCapability {
|
|
175
|
-
static
|
|
175
|
+
static TYPE_QNAME = "0x1::coin::BurnCapability";
|
|
176
176
|
dummy_field;
|
|
177
177
|
}
|
|
178
178
|
coin.BurnCapability = BurnCapability;
|
|
179
179
|
class Coin {
|
|
180
|
-
static
|
|
180
|
+
static TYPE_QNAME = "0x1::coin::Coin";
|
|
181
181
|
value;
|
|
182
182
|
}
|
|
183
183
|
coin.Coin = Coin;
|
|
184
184
|
class CoinInfo {
|
|
185
|
-
static
|
|
185
|
+
static TYPE_QNAME = "0x1::coin::CoinInfo";
|
|
186
186
|
name;
|
|
187
187
|
symbol;
|
|
188
188
|
decimals;
|
|
@@ -190,7 +190,7 @@ exports.coin = coin;
|
|
|
190
190
|
}
|
|
191
191
|
coin.CoinInfo = CoinInfo;
|
|
192
192
|
class CoinStore {
|
|
193
|
-
static
|
|
193
|
+
static TYPE_QNAME = "0x1::coin::CoinStore";
|
|
194
194
|
coin;
|
|
195
195
|
frozen;
|
|
196
196
|
deposit_events;
|
|
@@ -198,27 +198,27 @@ exports.coin = coin;
|
|
|
198
198
|
}
|
|
199
199
|
coin.CoinStore = CoinStore;
|
|
200
200
|
class DepositEvent {
|
|
201
|
-
static
|
|
201
|
+
static TYPE_QNAME = "0x1::coin::DepositEvent";
|
|
202
202
|
amount;
|
|
203
203
|
}
|
|
204
204
|
coin.DepositEvent = DepositEvent;
|
|
205
205
|
class FreezeCapability {
|
|
206
|
-
static
|
|
206
|
+
static TYPE_QNAME = "0x1::coin::FreezeCapability";
|
|
207
207
|
dummy_field;
|
|
208
208
|
}
|
|
209
209
|
coin.FreezeCapability = FreezeCapability;
|
|
210
210
|
class MintCapability {
|
|
211
|
-
static
|
|
211
|
+
static TYPE_QNAME = "0x1::coin::MintCapability";
|
|
212
212
|
dummy_field;
|
|
213
213
|
}
|
|
214
214
|
coin.MintCapability = MintCapability;
|
|
215
215
|
class SupplyConfig {
|
|
216
|
-
static
|
|
216
|
+
static TYPE_QNAME = "0x1::coin::SupplyConfig";
|
|
217
217
|
allow_upgrades;
|
|
218
218
|
}
|
|
219
219
|
coin.SupplyConfig = SupplyConfig;
|
|
220
220
|
class WithdrawEvent {
|
|
221
|
-
static
|
|
221
|
+
static TYPE_QNAME = "0x1::coin::WithdrawEvent";
|
|
222
222
|
amount;
|
|
223
223
|
}
|
|
224
224
|
coin.WithdrawEvent = WithdrawEvent;
|
|
@@ -231,12 +231,12 @@ exports.coin = coin;
|
|
|
231
231
|
var guid;
|
|
232
232
|
(function (guid) {
|
|
233
233
|
class GUID {
|
|
234
|
-
static
|
|
234
|
+
static TYPE_QNAME = "0x1::guid::GUID";
|
|
235
235
|
id;
|
|
236
236
|
}
|
|
237
237
|
guid.GUID = GUID;
|
|
238
238
|
class ID {
|
|
239
|
-
static
|
|
239
|
+
static TYPE_QNAME = "0x1::guid::ID";
|
|
240
240
|
creation_num;
|
|
241
241
|
addr;
|
|
242
242
|
}
|
|
@@ -293,7 +293,7 @@ class block extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
293
293
|
exports.block = block;
|
|
294
294
|
(function (block) {
|
|
295
295
|
class BlockResource {
|
|
296
|
-
static
|
|
296
|
+
static TYPE_QNAME = "0x1::block::BlockResource";
|
|
297
297
|
height;
|
|
298
298
|
epoch_interval;
|
|
299
299
|
new_block_events;
|
|
@@ -301,7 +301,7 @@ exports.block = block;
|
|
|
301
301
|
}
|
|
302
302
|
block.BlockResource = BlockResource;
|
|
303
303
|
class NewBlockEvent {
|
|
304
|
-
static
|
|
304
|
+
static TYPE_QNAME = "0x1::block::NewBlockEvent";
|
|
305
305
|
hash;
|
|
306
306
|
epoch;
|
|
307
307
|
round;
|
|
@@ -313,7 +313,7 @@ exports.block = block;
|
|
|
313
313
|
}
|
|
314
314
|
block.NewBlockEvent = NewBlockEvent;
|
|
315
315
|
class UpdateEpochIntervalEvent {
|
|
316
|
-
static
|
|
316
|
+
static TYPE_QNAME = "0x1::block::UpdateEpochIntervalEvent";
|
|
317
317
|
old_epoch_interval;
|
|
318
318
|
new_epoch_interval;
|
|
319
319
|
}
|
|
@@ -343,7 +343,7 @@ var error;
|
|
|
343
343
|
var event;
|
|
344
344
|
(function (event) {
|
|
345
345
|
class EventHandle {
|
|
346
|
-
static
|
|
346
|
+
static TYPE_QNAME = "0x1::event::EventHandle";
|
|
347
347
|
counter;
|
|
348
348
|
guid;
|
|
349
349
|
}
|
|
@@ -535,82 +535,82 @@ class stake extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
535
535
|
exports.stake = stake;
|
|
536
536
|
(function (stake) {
|
|
537
537
|
class AddStakeEvent {
|
|
538
|
-
static
|
|
538
|
+
static TYPE_QNAME = "0x1::stake::AddStakeEvent";
|
|
539
539
|
pool_address;
|
|
540
540
|
amount_added;
|
|
541
541
|
}
|
|
542
542
|
stake.AddStakeEvent = AddStakeEvent;
|
|
543
543
|
class AllowedValidators {
|
|
544
|
-
static
|
|
544
|
+
static TYPE_QNAME = "0x1::stake::AllowedValidators";
|
|
545
545
|
accounts;
|
|
546
546
|
}
|
|
547
547
|
stake.AllowedValidators = AllowedValidators;
|
|
548
548
|
class AptosCoinCapabilities {
|
|
549
|
-
static
|
|
549
|
+
static TYPE_QNAME = "0x1::stake::AptosCoinCapabilities";
|
|
550
550
|
mint_cap;
|
|
551
551
|
}
|
|
552
552
|
stake.AptosCoinCapabilities = AptosCoinCapabilities;
|
|
553
553
|
class DistributeRewardsEvent {
|
|
554
|
-
static
|
|
554
|
+
static TYPE_QNAME = "0x1::stake::DistributeRewardsEvent";
|
|
555
555
|
pool_address;
|
|
556
556
|
rewards_amount;
|
|
557
557
|
}
|
|
558
558
|
stake.DistributeRewardsEvent = DistributeRewardsEvent;
|
|
559
559
|
class IncreaseLockupEvent {
|
|
560
|
-
static
|
|
560
|
+
static TYPE_QNAME = "0x1::stake::IncreaseLockupEvent";
|
|
561
561
|
pool_address;
|
|
562
562
|
old_locked_until_secs;
|
|
563
563
|
new_locked_until_secs;
|
|
564
564
|
}
|
|
565
565
|
stake.IncreaseLockupEvent = IncreaseLockupEvent;
|
|
566
566
|
class IndividualValidatorPerformance {
|
|
567
|
-
static
|
|
567
|
+
static TYPE_QNAME = "0x1::stake::IndividualValidatorPerformance";
|
|
568
568
|
successful_proposals;
|
|
569
569
|
failed_proposals;
|
|
570
570
|
}
|
|
571
571
|
stake.IndividualValidatorPerformance = IndividualValidatorPerformance;
|
|
572
572
|
class JoinValidatorSetEvent {
|
|
573
|
-
static
|
|
573
|
+
static TYPE_QNAME = "0x1::stake::JoinValidatorSetEvent";
|
|
574
574
|
pool_address;
|
|
575
575
|
}
|
|
576
576
|
stake.JoinValidatorSetEvent = JoinValidatorSetEvent;
|
|
577
577
|
class LeaveValidatorSetEvent {
|
|
578
|
-
static
|
|
578
|
+
static TYPE_QNAME = "0x1::stake::LeaveValidatorSetEvent";
|
|
579
579
|
pool_address;
|
|
580
580
|
}
|
|
581
581
|
stake.LeaveValidatorSetEvent = LeaveValidatorSetEvent;
|
|
582
582
|
class OwnerCapability {
|
|
583
|
-
static
|
|
583
|
+
static TYPE_QNAME = "0x1::stake::OwnerCapability";
|
|
584
584
|
pool_address;
|
|
585
585
|
}
|
|
586
586
|
stake.OwnerCapability = OwnerCapability;
|
|
587
587
|
class ReactivateStakeEvent {
|
|
588
|
-
static
|
|
588
|
+
static TYPE_QNAME = "0x1::stake::ReactivateStakeEvent";
|
|
589
589
|
pool_address;
|
|
590
590
|
amount;
|
|
591
591
|
}
|
|
592
592
|
stake.ReactivateStakeEvent = ReactivateStakeEvent;
|
|
593
593
|
class RegisterValidatorCandidateEvent {
|
|
594
|
-
static
|
|
594
|
+
static TYPE_QNAME = "0x1::stake::RegisterValidatorCandidateEvent";
|
|
595
595
|
pool_address;
|
|
596
596
|
}
|
|
597
597
|
stake.RegisterValidatorCandidateEvent = RegisterValidatorCandidateEvent;
|
|
598
598
|
class RotateConsensusKeyEvent {
|
|
599
|
-
static
|
|
599
|
+
static TYPE_QNAME = "0x1::stake::RotateConsensusKeyEvent";
|
|
600
600
|
pool_address;
|
|
601
601
|
old_consensus_pubkey;
|
|
602
602
|
new_consensus_pubkey;
|
|
603
603
|
}
|
|
604
604
|
stake.RotateConsensusKeyEvent = RotateConsensusKeyEvent;
|
|
605
605
|
class SetOperatorEvent {
|
|
606
|
-
static
|
|
606
|
+
static TYPE_QNAME = "0x1::stake::SetOperatorEvent";
|
|
607
607
|
pool_address;
|
|
608
608
|
old_operator;
|
|
609
609
|
new_operator;
|
|
610
610
|
}
|
|
611
611
|
stake.SetOperatorEvent = SetOperatorEvent;
|
|
612
612
|
class StakePool {
|
|
613
|
-
static
|
|
613
|
+
static TYPE_QNAME = "0x1::stake::StakePool";
|
|
614
614
|
active;
|
|
615
615
|
inactive;
|
|
616
616
|
pending_active;
|
|
@@ -633,13 +633,13 @@ exports.stake = stake;
|
|
|
633
633
|
}
|
|
634
634
|
stake.StakePool = StakePool;
|
|
635
635
|
class UnlockStakeEvent {
|
|
636
|
-
static
|
|
636
|
+
static TYPE_QNAME = "0x1::stake::UnlockStakeEvent";
|
|
637
637
|
pool_address;
|
|
638
638
|
amount_unlocked;
|
|
639
639
|
}
|
|
640
640
|
stake.UnlockStakeEvent = UnlockStakeEvent;
|
|
641
641
|
class UpdateNetworkAndFullnodeAddressesEvent {
|
|
642
|
-
static
|
|
642
|
+
static TYPE_QNAME = "0x1::stake::UpdateNetworkAndFullnodeAddressesEvent";
|
|
643
643
|
pool_address;
|
|
644
644
|
old_network_addresses;
|
|
645
645
|
new_network_addresses;
|
|
@@ -648,7 +648,7 @@ exports.stake = stake;
|
|
|
648
648
|
}
|
|
649
649
|
stake.UpdateNetworkAndFullnodeAddressesEvent = UpdateNetworkAndFullnodeAddressesEvent;
|
|
650
650
|
class ValidatorConfig {
|
|
651
|
-
static
|
|
651
|
+
static TYPE_QNAME = "0x1::stake::ValidatorConfig";
|
|
652
652
|
consensus_pubkey;
|
|
653
653
|
network_addresses;
|
|
654
654
|
fullnode_addresses;
|
|
@@ -656,19 +656,19 @@ exports.stake = stake;
|
|
|
656
656
|
}
|
|
657
657
|
stake.ValidatorConfig = ValidatorConfig;
|
|
658
658
|
class ValidatorInfo {
|
|
659
|
-
static
|
|
659
|
+
static TYPE_QNAME = "0x1::stake::ValidatorInfo";
|
|
660
660
|
addr;
|
|
661
661
|
voting_power;
|
|
662
662
|
config;
|
|
663
663
|
}
|
|
664
664
|
stake.ValidatorInfo = ValidatorInfo;
|
|
665
665
|
class ValidatorPerformance {
|
|
666
|
-
static
|
|
666
|
+
static TYPE_QNAME = "0x1::stake::ValidatorPerformance";
|
|
667
667
|
validators;
|
|
668
668
|
}
|
|
669
669
|
stake.ValidatorPerformance = ValidatorPerformance;
|
|
670
670
|
class ValidatorSet {
|
|
671
|
-
static
|
|
671
|
+
static TYPE_QNAME = "0x1::stake::ValidatorSet";
|
|
672
672
|
consensus_scheme;
|
|
673
673
|
active_validators;
|
|
674
674
|
pending_inactive;
|
|
@@ -678,7 +678,7 @@ exports.stake = stake;
|
|
|
678
678
|
}
|
|
679
679
|
stake.ValidatorSet = ValidatorSet;
|
|
680
680
|
class WithdrawStakeEvent {
|
|
681
|
-
static
|
|
681
|
+
static TYPE_QNAME = "0x1::stake::WithdrawStakeEvent";
|
|
682
682
|
pool_address;
|
|
683
683
|
amount_withdrawn;
|
|
684
684
|
}
|
|
@@ -692,12 +692,12 @@ exports.stake = stake;
|
|
|
692
692
|
var table;
|
|
693
693
|
(function (table) {
|
|
694
694
|
class Box {
|
|
695
|
-
static
|
|
695
|
+
static TYPE_QNAME = "0x1::table::Box";
|
|
696
696
|
val;
|
|
697
697
|
}
|
|
698
698
|
table.Box = Box;
|
|
699
699
|
class Table {
|
|
700
|
-
static
|
|
700
|
+
static TYPE_QNAME = "0x1::table::Table";
|
|
701
701
|
handle;
|
|
702
702
|
}
|
|
703
703
|
table.Table = Table;
|
|
@@ -718,7 +718,7 @@ var math64;
|
|
|
718
718
|
var option;
|
|
719
719
|
(function (option) {
|
|
720
720
|
class Option {
|
|
721
|
-
static
|
|
721
|
+
static TYPE_QNAME = "0x1::option::Option";
|
|
722
722
|
vec;
|
|
723
723
|
}
|
|
724
724
|
option.Option = Option;
|
|
@@ -739,7 +739,7 @@ var signer;
|
|
|
739
739
|
var string;
|
|
740
740
|
(function (string) {
|
|
741
741
|
class String {
|
|
742
|
-
static
|
|
742
|
+
static TYPE_QNAME = "0x1::string::String";
|
|
743
743
|
bytes;
|
|
744
744
|
}
|
|
745
745
|
string.String = String;
|
|
@@ -793,7 +793,7 @@ class voting extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
793
793
|
exports.voting = voting;
|
|
794
794
|
(function (voting) {
|
|
795
795
|
class CreateProposalEvent {
|
|
796
|
-
static
|
|
796
|
+
static TYPE_QNAME = "0x1::voting::CreateProposalEvent";
|
|
797
797
|
proposal_id;
|
|
798
798
|
early_resolution_vote_threshold;
|
|
799
799
|
execution_hash;
|
|
@@ -803,7 +803,7 @@ exports.voting = voting;
|
|
|
803
803
|
}
|
|
804
804
|
voting.CreateProposalEvent = CreateProposalEvent;
|
|
805
805
|
class Proposal {
|
|
806
|
-
static
|
|
806
|
+
static TYPE_QNAME = "0x1::voting::Proposal";
|
|
807
807
|
proposer;
|
|
808
808
|
execution_content;
|
|
809
809
|
metadata;
|
|
@@ -819,13 +819,13 @@ exports.voting = voting;
|
|
|
819
819
|
}
|
|
820
820
|
voting.Proposal = Proposal;
|
|
821
821
|
class RegisterForumEvent {
|
|
822
|
-
static
|
|
822
|
+
static TYPE_QNAME = "0x1::voting::RegisterForumEvent";
|
|
823
823
|
hosting_account;
|
|
824
824
|
proposal_type_info;
|
|
825
825
|
}
|
|
826
826
|
voting.RegisterForumEvent = RegisterForumEvent;
|
|
827
827
|
class ResolveProposal {
|
|
828
|
-
static
|
|
828
|
+
static TYPE_QNAME = "0x1::voting::ResolveProposal";
|
|
829
829
|
proposal_id;
|
|
830
830
|
yes_votes;
|
|
831
831
|
no_votes;
|
|
@@ -833,13 +833,13 @@ exports.voting = voting;
|
|
|
833
833
|
}
|
|
834
834
|
voting.ResolveProposal = ResolveProposal;
|
|
835
835
|
class VoteEvent {
|
|
836
|
-
static
|
|
836
|
+
static TYPE_QNAME = "0x1::voting::VoteEvent";
|
|
837
837
|
proposal_id;
|
|
838
838
|
num_votes;
|
|
839
839
|
}
|
|
840
840
|
voting.VoteEvent = VoteEvent;
|
|
841
841
|
class VotingEvents {
|
|
842
|
-
static
|
|
842
|
+
static TYPE_QNAME = "0x1::voting::VotingEvents";
|
|
843
843
|
create_proposal_events;
|
|
844
844
|
register_forum_events;
|
|
845
845
|
resolve_proposal_events;
|
|
@@ -847,7 +847,7 @@ exports.voting = voting;
|
|
|
847
847
|
}
|
|
848
848
|
voting.VotingEvents = VotingEvents;
|
|
849
849
|
class VotingForum {
|
|
850
|
-
static
|
|
850
|
+
static TYPE_QNAME = "0x1::voting::VotingForum";
|
|
851
851
|
proposals;
|
|
852
852
|
events;
|
|
853
853
|
next_proposal_id;
|
|
@@ -910,7 +910,7 @@ class account extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
910
910
|
exports.account = account;
|
|
911
911
|
(function (account) {
|
|
912
912
|
class Account {
|
|
913
|
-
static
|
|
913
|
+
static TYPE_QNAME = "0x1::account::Account";
|
|
914
914
|
authentication_key;
|
|
915
915
|
sequence_number;
|
|
916
916
|
guid_creation_num;
|
|
@@ -921,39 +921,39 @@ exports.account = account;
|
|
|
921
921
|
}
|
|
922
922
|
account.Account = Account;
|
|
923
923
|
class CapabilityOffer {
|
|
924
|
-
static
|
|
924
|
+
static TYPE_QNAME = "0x1::account::CapabilityOffer";
|
|
925
925
|
for;
|
|
926
926
|
}
|
|
927
927
|
account.CapabilityOffer = CapabilityOffer;
|
|
928
928
|
class CoinRegisterEvent {
|
|
929
|
-
static
|
|
929
|
+
static TYPE_QNAME = "0x1::account::CoinRegisterEvent";
|
|
930
930
|
type_info;
|
|
931
931
|
}
|
|
932
932
|
account.CoinRegisterEvent = CoinRegisterEvent;
|
|
933
933
|
class KeyRotationEvent {
|
|
934
|
-
static
|
|
934
|
+
static TYPE_QNAME = "0x1::account::KeyRotationEvent";
|
|
935
935
|
old_authentication_key;
|
|
936
936
|
new_authentication_key;
|
|
937
937
|
}
|
|
938
938
|
account.KeyRotationEvent = KeyRotationEvent;
|
|
939
939
|
class OriginatingAddress {
|
|
940
|
-
static
|
|
940
|
+
static TYPE_QNAME = "0x1::account::OriginatingAddress";
|
|
941
941
|
address_map;
|
|
942
942
|
}
|
|
943
943
|
account.OriginatingAddress = OriginatingAddress;
|
|
944
944
|
class RotationCapability {
|
|
945
|
-
static
|
|
945
|
+
static TYPE_QNAME = "0x1::account::RotationCapability";
|
|
946
946
|
account;
|
|
947
947
|
}
|
|
948
948
|
account.RotationCapability = RotationCapability;
|
|
949
949
|
class RotationCapabilityOfferProofChallenge {
|
|
950
|
-
static
|
|
950
|
+
static TYPE_QNAME = "0x1::account::RotationCapabilityOfferProofChallenge";
|
|
951
951
|
sequence_number;
|
|
952
952
|
recipient_address;
|
|
953
953
|
}
|
|
954
954
|
account.RotationCapabilityOfferProofChallenge = RotationCapabilityOfferProofChallenge;
|
|
955
955
|
class RotationProofChallenge {
|
|
956
|
-
static
|
|
956
|
+
static TYPE_QNAME = "0x1::account::RotationProofChallenge";
|
|
957
957
|
sequence_number;
|
|
958
958
|
originator;
|
|
959
959
|
current_auth_key;
|
|
@@ -961,18 +961,18 @@ exports.account = account;
|
|
|
961
961
|
}
|
|
962
962
|
account.RotationProofChallenge = RotationProofChallenge;
|
|
963
963
|
class SignerCapability {
|
|
964
|
-
static
|
|
964
|
+
static TYPE_QNAME = "0x1::account::SignerCapability";
|
|
965
965
|
account;
|
|
966
966
|
}
|
|
967
967
|
account.SignerCapability = SignerCapability;
|
|
968
968
|
class SignerCapabilityOfferProofChallenge {
|
|
969
|
-
static
|
|
969
|
+
static TYPE_QNAME = "0x1::account::SignerCapabilityOfferProofChallenge";
|
|
970
970
|
sequence_number;
|
|
971
971
|
recipient_address;
|
|
972
972
|
}
|
|
973
973
|
account.SignerCapabilityOfferProofChallenge = SignerCapabilityOfferProofChallenge;
|
|
974
974
|
class SignerCapabilityOfferProofChallengeV2 {
|
|
975
|
-
static
|
|
975
|
+
static TYPE_QNAME = "0x1::account::SignerCapabilityOfferProofChallengeV2";
|
|
976
976
|
sequence_number;
|
|
977
977
|
source_address;
|
|
978
978
|
recipient_address;
|
|
@@ -987,23 +987,23 @@ exports.account = account;
|
|
|
987
987
|
var ed25519;
|
|
988
988
|
(function (ed25519) {
|
|
989
989
|
class Signature {
|
|
990
|
-
static
|
|
990
|
+
static TYPE_QNAME = "0x1::ed25519::Signature";
|
|
991
991
|
bytes;
|
|
992
992
|
}
|
|
993
993
|
ed25519.Signature = Signature;
|
|
994
994
|
class SignedMessage {
|
|
995
|
-
static
|
|
995
|
+
static TYPE_QNAME = "0x1::ed25519::SignedMessage";
|
|
996
996
|
type_info;
|
|
997
997
|
inner;
|
|
998
998
|
}
|
|
999
999
|
ed25519.SignedMessage = SignedMessage;
|
|
1000
1000
|
class UnvalidatedPublicKey {
|
|
1001
|
-
static
|
|
1001
|
+
static TYPE_QNAME = "0x1::ed25519::UnvalidatedPublicKey";
|
|
1002
1002
|
bytes;
|
|
1003
1003
|
}
|
|
1004
1004
|
ed25519.UnvalidatedPublicKey = UnvalidatedPublicKey;
|
|
1005
1005
|
class ValidatedPublicKey {
|
|
1006
|
-
static
|
|
1006
|
+
static TYPE_QNAME = "0x1::ed25519::ValidatedPublicKey";
|
|
1007
1007
|
bytes;
|
|
1008
1008
|
}
|
|
1009
1009
|
ed25519.ValidatedPublicKey = ValidatedPublicKey;
|
|
@@ -1016,13 +1016,13 @@ var ed25519;
|
|
|
1016
1016
|
var genesis;
|
|
1017
1017
|
(function (genesis) {
|
|
1018
1018
|
class AccountMap {
|
|
1019
|
-
static
|
|
1019
|
+
static TYPE_QNAME = "0x1::genesis::AccountMap";
|
|
1020
1020
|
account_address;
|
|
1021
1021
|
balance;
|
|
1022
1022
|
}
|
|
1023
1023
|
genesis.AccountMap = AccountMap;
|
|
1024
1024
|
class EmployeeAccountMap {
|
|
1025
|
-
static
|
|
1025
|
+
static TYPE_QNAME = "0x1::genesis::EmployeeAccountMap";
|
|
1026
1026
|
accounts;
|
|
1027
1027
|
validator;
|
|
1028
1028
|
vesting_schedule_numerator;
|
|
@@ -1031,7 +1031,7 @@ var genesis;
|
|
|
1031
1031
|
}
|
|
1032
1032
|
genesis.EmployeeAccountMap = EmployeeAccountMap;
|
|
1033
1033
|
class ValidatorConfiguration {
|
|
1034
|
-
static
|
|
1034
|
+
static TYPE_QNAME = "0x1::genesis::ValidatorConfiguration";
|
|
1035
1035
|
owner_address;
|
|
1036
1036
|
operator_address;
|
|
1037
1037
|
voter_address;
|
|
@@ -1043,7 +1043,7 @@ var genesis;
|
|
|
1043
1043
|
}
|
|
1044
1044
|
genesis.ValidatorConfiguration = ValidatorConfiguration;
|
|
1045
1045
|
class ValidatorConfigurationWithCommission {
|
|
1046
|
-
static
|
|
1046
|
+
static TYPE_QNAME = "0x1::genesis::ValidatorConfigurationWithCommission";
|
|
1047
1047
|
validator_config;
|
|
1048
1048
|
commission_percentage;
|
|
1049
1049
|
join_during_genesis;
|
|
@@ -1088,12 +1088,12 @@ class version extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
1088
1088
|
exports.version = version;
|
|
1089
1089
|
(function (version) {
|
|
1090
1090
|
class SetVersionCapability {
|
|
1091
|
-
static
|
|
1091
|
+
static TYPE_QNAME = "0x1::version::SetVersionCapability";
|
|
1092
1092
|
dummy_field;
|
|
1093
1093
|
}
|
|
1094
1094
|
version.SetVersionCapability = SetVersionCapability;
|
|
1095
1095
|
class Version {
|
|
1096
|
-
static
|
|
1096
|
+
static TYPE_QNAME = "0x1::version::Version";
|
|
1097
1097
|
major;
|
|
1098
1098
|
}
|
|
1099
1099
|
version.Version = Version;
|
|
@@ -1272,21 +1272,21 @@ class vesting extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
1272
1272
|
exports.vesting = vesting;
|
|
1273
1273
|
(function (vesting) {
|
|
1274
1274
|
class AdminStore {
|
|
1275
|
-
static
|
|
1275
|
+
static TYPE_QNAME = "0x1::vesting::AdminStore";
|
|
1276
1276
|
vesting_contracts;
|
|
1277
1277
|
nonce;
|
|
1278
1278
|
create_events;
|
|
1279
1279
|
}
|
|
1280
1280
|
vesting.AdminStore = AdminStore;
|
|
1281
1281
|
class AdminWithdrawEvent {
|
|
1282
|
-
static
|
|
1282
|
+
static TYPE_QNAME = "0x1::vesting::AdminWithdrawEvent";
|
|
1283
1283
|
admin;
|
|
1284
1284
|
vesting_contract_address;
|
|
1285
1285
|
amount;
|
|
1286
1286
|
}
|
|
1287
1287
|
vesting.AdminWithdrawEvent = AdminWithdrawEvent;
|
|
1288
1288
|
class CreateVestingContractEvent {
|
|
1289
|
-
static
|
|
1289
|
+
static TYPE_QNAME = "0x1::vesting::CreateVestingContractEvent";
|
|
1290
1290
|
operator;
|
|
1291
1291
|
voter;
|
|
1292
1292
|
grant_amount;
|
|
@@ -1297,14 +1297,14 @@ exports.vesting = vesting;
|
|
|
1297
1297
|
}
|
|
1298
1298
|
vesting.CreateVestingContractEvent = CreateVestingContractEvent;
|
|
1299
1299
|
class DistributeEvent {
|
|
1300
|
-
static
|
|
1300
|
+
static TYPE_QNAME = "0x1::vesting::DistributeEvent";
|
|
1301
1301
|
admin;
|
|
1302
1302
|
vesting_contract_address;
|
|
1303
1303
|
amount;
|
|
1304
1304
|
}
|
|
1305
1305
|
vesting.DistributeEvent = DistributeEvent;
|
|
1306
1306
|
class ResetLockupEvent {
|
|
1307
|
-
static
|
|
1307
|
+
static TYPE_QNAME = "0x1::vesting::ResetLockupEvent";
|
|
1308
1308
|
admin;
|
|
1309
1309
|
vesting_contract_address;
|
|
1310
1310
|
staking_pool_address;
|
|
@@ -1312,7 +1312,7 @@ exports.vesting = vesting;
|
|
|
1312
1312
|
}
|
|
1313
1313
|
vesting.ResetLockupEvent = ResetLockupEvent;
|
|
1314
1314
|
class SetBeneficiaryEvent {
|
|
1315
|
-
static
|
|
1315
|
+
static TYPE_QNAME = "0x1::vesting::SetBeneficiaryEvent";
|
|
1316
1316
|
admin;
|
|
1317
1317
|
vesting_contract_address;
|
|
1318
1318
|
shareholder;
|
|
@@ -1321,7 +1321,7 @@ exports.vesting = vesting;
|
|
|
1321
1321
|
}
|
|
1322
1322
|
vesting.SetBeneficiaryEvent = SetBeneficiaryEvent;
|
|
1323
1323
|
class StakingInfo {
|
|
1324
|
-
static
|
|
1324
|
+
static TYPE_QNAME = "0x1::vesting::StakingInfo";
|
|
1325
1325
|
pool_address;
|
|
1326
1326
|
operator;
|
|
1327
1327
|
voter;
|
|
@@ -1329,13 +1329,13 @@ exports.vesting = vesting;
|
|
|
1329
1329
|
}
|
|
1330
1330
|
vesting.StakingInfo = StakingInfo;
|
|
1331
1331
|
class TerminateEvent {
|
|
1332
|
-
static
|
|
1332
|
+
static TYPE_QNAME = "0x1::vesting::TerminateEvent";
|
|
1333
1333
|
admin;
|
|
1334
1334
|
vesting_contract_address;
|
|
1335
1335
|
}
|
|
1336
1336
|
vesting.TerminateEvent = TerminateEvent;
|
|
1337
1337
|
class UnlockRewardsEvent {
|
|
1338
|
-
static
|
|
1338
|
+
static TYPE_QNAME = "0x1::vesting::UnlockRewardsEvent";
|
|
1339
1339
|
admin;
|
|
1340
1340
|
vesting_contract_address;
|
|
1341
1341
|
staking_pool_address;
|
|
@@ -1343,7 +1343,7 @@ exports.vesting = vesting;
|
|
|
1343
1343
|
}
|
|
1344
1344
|
vesting.UnlockRewardsEvent = UnlockRewardsEvent;
|
|
1345
1345
|
class UpdateOperatorEvent {
|
|
1346
|
-
static
|
|
1346
|
+
static TYPE_QNAME = "0x1::vesting::UpdateOperatorEvent";
|
|
1347
1347
|
admin;
|
|
1348
1348
|
vesting_contract_address;
|
|
1349
1349
|
staking_pool_address;
|
|
@@ -1353,7 +1353,7 @@ exports.vesting = vesting;
|
|
|
1353
1353
|
}
|
|
1354
1354
|
vesting.UpdateOperatorEvent = UpdateOperatorEvent;
|
|
1355
1355
|
class UpdateVoterEvent {
|
|
1356
|
-
static
|
|
1356
|
+
static TYPE_QNAME = "0x1::vesting::UpdateVoterEvent";
|
|
1357
1357
|
admin;
|
|
1358
1358
|
vesting_contract_address;
|
|
1359
1359
|
staking_pool_address;
|
|
@@ -1362,7 +1362,7 @@ exports.vesting = vesting;
|
|
|
1362
1362
|
}
|
|
1363
1363
|
vesting.UpdateVoterEvent = UpdateVoterEvent;
|
|
1364
1364
|
class VestEvent {
|
|
1365
|
-
static
|
|
1365
|
+
static TYPE_QNAME = "0x1::vesting::VestEvent";
|
|
1366
1366
|
admin;
|
|
1367
1367
|
vesting_contract_address;
|
|
1368
1368
|
staking_pool_address;
|
|
@@ -1371,12 +1371,12 @@ exports.vesting = vesting;
|
|
|
1371
1371
|
}
|
|
1372
1372
|
vesting.VestEvent = VestEvent;
|
|
1373
1373
|
class VestingAccountManagement {
|
|
1374
|
-
static
|
|
1374
|
+
static TYPE_QNAME = "0x1::vesting::VestingAccountManagement";
|
|
1375
1375
|
roles;
|
|
1376
1376
|
}
|
|
1377
1377
|
vesting.VestingAccountManagement = VestingAccountManagement;
|
|
1378
1378
|
class VestingContract {
|
|
1379
|
-
static
|
|
1379
|
+
static TYPE_QNAME = "0x1::vesting::VestingContract";
|
|
1380
1380
|
state;
|
|
1381
1381
|
admin;
|
|
1382
1382
|
grant_pool;
|
|
@@ -1398,7 +1398,7 @@ exports.vesting = vesting;
|
|
|
1398
1398
|
}
|
|
1399
1399
|
vesting.VestingContract = VestingContract;
|
|
1400
1400
|
class VestingSchedule {
|
|
1401
|
-
static
|
|
1401
|
+
static TYPE_QNAME = "0x1::vesting::VestingSchedule";
|
|
1402
1402
|
schedule;
|
|
1403
1403
|
start_timestamp_secs;
|
|
1404
1404
|
period_duration;
|
|
@@ -1414,32 +1414,32 @@ exports.vesting = vesting;
|
|
|
1414
1414
|
var bls12381;
|
|
1415
1415
|
(function (bls12381) {
|
|
1416
1416
|
class AggrOrMultiSignature {
|
|
1417
|
-
static
|
|
1417
|
+
static TYPE_QNAME = "0x1::bls12381::AggrOrMultiSignature";
|
|
1418
1418
|
bytes;
|
|
1419
1419
|
}
|
|
1420
1420
|
bls12381.AggrOrMultiSignature = AggrOrMultiSignature;
|
|
1421
1421
|
class AggrPublicKeysWithPoP {
|
|
1422
|
-
static
|
|
1422
|
+
static TYPE_QNAME = "0x1::bls12381::AggrPublicKeysWithPoP";
|
|
1423
1423
|
bytes;
|
|
1424
1424
|
}
|
|
1425
1425
|
bls12381.AggrPublicKeysWithPoP = AggrPublicKeysWithPoP;
|
|
1426
1426
|
class ProofOfPossession {
|
|
1427
|
-
static
|
|
1427
|
+
static TYPE_QNAME = "0x1::bls12381::ProofOfPossession";
|
|
1428
1428
|
bytes;
|
|
1429
1429
|
}
|
|
1430
1430
|
bls12381.ProofOfPossession = ProofOfPossession;
|
|
1431
1431
|
class PublicKey {
|
|
1432
|
-
static
|
|
1432
|
+
static TYPE_QNAME = "0x1::bls12381::PublicKey";
|
|
1433
1433
|
bytes;
|
|
1434
1434
|
}
|
|
1435
1435
|
bls12381.PublicKey = PublicKey;
|
|
1436
1436
|
class PublicKeyWithPoP {
|
|
1437
|
-
static
|
|
1437
|
+
static TYPE_QNAME = "0x1::bls12381::PublicKeyWithPoP";
|
|
1438
1438
|
bytes;
|
|
1439
1439
|
}
|
|
1440
1440
|
bls12381.PublicKeyWithPoP = PublicKeyWithPoP;
|
|
1441
1441
|
class Signature {
|
|
1442
|
-
static
|
|
1442
|
+
static TYPE_QNAME = "0x1::bls12381::Signature";
|
|
1443
1443
|
bytes;
|
|
1444
1444
|
}
|
|
1445
1445
|
bls12381.Signature = Signature;
|
|
@@ -1452,7 +1452,7 @@ var bls12381;
|
|
|
1452
1452
|
var chain_id;
|
|
1453
1453
|
(function (chain_id) {
|
|
1454
1454
|
class ChainId {
|
|
1455
|
-
static
|
|
1455
|
+
static TYPE_QNAME = "0x1::chain_id::ChainId";
|
|
1456
1456
|
id;
|
|
1457
1457
|
}
|
|
1458
1458
|
chain_id.ChainId = ChainId;
|
|
@@ -1465,7 +1465,7 @@ var chain_id;
|
|
|
1465
1465
|
var features;
|
|
1466
1466
|
(function (features) {
|
|
1467
1467
|
class Features {
|
|
1468
|
-
static
|
|
1468
|
+
static TYPE_QNAME = "0x1::features::Features";
|
|
1469
1469
|
features;
|
|
1470
1470
|
}
|
|
1471
1471
|
features.Features = Features;
|
|
@@ -1486,7 +1486,7 @@ var from_bcs;
|
|
|
1486
1486
|
var pool_u64;
|
|
1487
1487
|
(function (pool_u64) {
|
|
1488
1488
|
class Pool {
|
|
1489
|
-
static
|
|
1489
|
+
static TYPE_QNAME = "0x1::pool_u64::Pool";
|
|
1490
1490
|
shareholders_limit;
|
|
1491
1491
|
total_coins;
|
|
1492
1492
|
total_shares;
|
|
@@ -1504,12 +1504,12 @@ var pool_u64;
|
|
|
1504
1504
|
var secp256k1;
|
|
1505
1505
|
(function (secp256k1) {
|
|
1506
1506
|
class ECDSARawPublicKey {
|
|
1507
|
-
static
|
|
1507
|
+
static TYPE_QNAME = "0x1::secp256k1::ECDSARawPublicKey";
|
|
1508
1508
|
bytes;
|
|
1509
1509
|
}
|
|
1510
1510
|
secp256k1.ECDSARawPublicKey = ECDSARawPublicKey;
|
|
1511
1511
|
class ECDSASignature {
|
|
1512
|
-
static
|
|
1512
|
+
static TYPE_QNAME = "0x1::secp256k1::ECDSASignature";
|
|
1513
1513
|
bytes;
|
|
1514
1514
|
}
|
|
1515
1515
|
secp256k1.ECDSASignature = ECDSASignature;
|
|
@@ -1522,7 +1522,7 @@ var secp256k1;
|
|
|
1522
1522
|
var timestamp;
|
|
1523
1523
|
(function (timestamp) {
|
|
1524
1524
|
class CurrentTimeMicroseconds {
|
|
1525
|
-
static
|
|
1525
|
+
static TYPE_QNAME = "0x1::timestamp::CurrentTimeMicroseconds";
|
|
1526
1526
|
microseconds;
|
|
1527
1527
|
}
|
|
1528
1528
|
timestamp.CurrentTimeMicroseconds = CurrentTimeMicroseconds;
|
|
@@ -1535,7 +1535,7 @@ var timestamp;
|
|
|
1535
1535
|
var type_info;
|
|
1536
1536
|
(function (type_info) {
|
|
1537
1537
|
class TypeInfo {
|
|
1538
|
-
static
|
|
1538
|
+
static TYPE_QNAME = "0x1::type_info::TypeInfo";
|
|
1539
1539
|
account_address;
|
|
1540
1540
|
module_name;
|
|
1541
1541
|
struct_name;
|
|
@@ -1550,7 +1550,7 @@ var type_info;
|
|
|
1550
1550
|
var aggregator;
|
|
1551
1551
|
(function (aggregator) {
|
|
1552
1552
|
class Aggregator {
|
|
1553
|
-
static
|
|
1553
|
+
static TYPE_QNAME = "0x1::aggregator::Aggregator";
|
|
1554
1554
|
handle;
|
|
1555
1555
|
key;
|
|
1556
1556
|
limit;
|
|
@@ -1601,22 +1601,22 @@ class aptos_coin extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
1601
1601
|
exports.aptos_coin = aptos_coin;
|
|
1602
1602
|
(function (aptos_coin) {
|
|
1603
1603
|
class AptosCoin {
|
|
1604
|
-
static
|
|
1604
|
+
static TYPE_QNAME = "0x1::aptos_coin::AptosCoin";
|
|
1605
1605
|
dummy_field;
|
|
1606
1606
|
}
|
|
1607
1607
|
aptos_coin.AptosCoin = AptosCoin;
|
|
1608
1608
|
class DelegatedMintCapability {
|
|
1609
|
-
static
|
|
1609
|
+
static TYPE_QNAME = "0x1::aptos_coin::DelegatedMintCapability";
|
|
1610
1610
|
to;
|
|
1611
1611
|
}
|
|
1612
1612
|
aptos_coin.DelegatedMintCapability = DelegatedMintCapability;
|
|
1613
1613
|
class Delegations {
|
|
1614
|
-
static
|
|
1614
|
+
static TYPE_QNAME = "0x1::aptos_coin::Delegations";
|
|
1615
1615
|
inner;
|
|
1616
1616
|
}
|
|
1617
1617
|
aptos_coin.Delegations = Delegations;
|
|
1618
1618
|
class MintCapStore {
|
|
1619
|
-
static
|
|
1619
|
+
static TYPE_QNAME = "0x1::aptos_coin::MintCapStore";
|
|
1620
1620
|
mint_cap;
|
|
1621
1621
|
}
|
|
1622
1622
|
aptos_coin.MintCapStore = MintCapStore;
|
|
@@ -1637,7 +1637,7 @@ var aptos_hash;
|
|
|
1637
1637
|
var bit_vector;
|
|
1638
1638
|
(function (bit_vector) {
|
|
1639
1639
|
class BitVector {
|
|
1640
|
-
static
|
|
1640
|
+
static TYPE_QNAME = "0x1::bit_vector::BitVector";
|
|
1641
1641
|
length;
|
|
1642
1642
|
bit_field;
|
|
1643
1643
|
}
|
|
@@ -1651,22 +1651,22 @@ var bit_vector;
|
|
|
1651
1651
|
var capability;
|
|
1652
1652
|
(function (capability) {
|
|
1653
1653
|
class Cap {
|
|
1654
|
-
static
|
|
1654
|
+
static TYPE_QNAME = "0x1::capability::Cap";
|
|
1655
1655
|
root;
|
|
1656
1656
|
}
|
|
1657
1657
|
capability.Cap = Cap;
|
|
1658
1658
|
class CapDelegateState {
|
|
1659
|
-
static
|
|
1659
|
+
static TYPE_QNAME = "0x1::capability::CapDelegateState";
|
|
1660
1660
|
root;
|
|
1661
1661
|
}
|
|
1662
1662
|
capability.CapDelegateState = CapDelegateState;
|
|
1663
1663
|
class CapState {
|
|
1664
|
-
static
|
|
1664
|
+
static TYPE_QNAME = "0x1::capability::CapState";
|
|
1665
1665
|
delegates;
|
|
1666
1666
|
}
|
|
1667
1667
|
capability.CapState = CapState;
|
|
1668
1668
|
class LinearCap {
|
|
1669
|
-
static
|
|
1669
|
+
static TYPE_QNAME = "0x1::capability::LinearCap";
|
|
1670
1670
|
root;
|
|
1671
1671
|
}
|
|
1672
1672
|
capability.LinearCap = LinearCap;
|
|
@@ -1679,7 +1679,7 @@ var capability;
|
|
|
1679
1679
|
var comparator;
|
|
1680
1680
|
(function (comparator) {
|
|
1681
1681
|
class Result {
|
|
1682
|
-
static
|
|
1682
|
+
static TYPE_QNAME = "0x1::comparator::Result";
|
|
1683
1683
|
inner;
|
|
1684
1684
|
}
|
|
1685
1685
|
comparator.Result = Result;
|
|
@@ -1692,13 +1692,13 @@ var comparator;
|
|
|
1692
1692
|
var simple_map;
|
|
1693
1693
|
(function (simple_map) {
|
|
1694
1694
|
class Element {
|
|
1695
|
-
static
|
|
1695
|
+
static TYPE_QNAME = "0x1::simple_map::Element";
|
|
1696
1696
|
key;
|
|
1697
1697
|
value;
|
|
1698
1698
|
}
|
|
1699
1699
|
simple_map.Element = Element;
|
|
1700
1700
|
class SimpleMap {
|
|
1701
|
-
static
|
|
1701
|
+
static TYPE_QNAME = "0x1::simple_map::SimpleMap";
|
|
1702
1702
|
data;
|
|
1703
1703
|
}
|
|
1704
1704
|
simple_map.SimpleMap = SimpleMap;
|
|
@@ -1711,20 +1711,20 @@ var simple_map;
|
|
|
1711
1711
|
var storage_gas;
|
|
1712
1712
|
(function (storage_gas) {
|
|
1713
1713
|
class GasCurve {
|
|
1714
|
-
static
|
|
1714
|
+
static TYPE_QNAME = "0x1::storage_gas::GasCurve";
|
|
1715
1715
|
min_gas;
|
|
1716
1716
|
max_gas;
|
|
1717
1717
|
points;
|
|
1718
1718
|
}
|
|
1719
1719
|
storage_gas.GasCurve = GasCurve;
|
|
1720
1720
|
class Point {
|
|
1721
|
-
static
|
|
1721
|
+
static TYPE_QNAME = "0x1::storage_gas::Point";
|
|
1722
1722
|
x;
|
|
1723
1723
|
y;
|
|
1724
1724
|
}
|
|
1725
1725
|
storage_gas.Point = Point;
|
|
1726
1726
|
class StorageGas {
|
|
1727
|
-
static
|
|
1727
|
+
static TYPE_QNAME = "0x1::storage_gas::StorageGas";
|
|
1728
1728
|
per_item_read;
|
|
1729
1729
|
per_item_create;
|
|
1730
1730
|
per_item_write;
|
|
@@ -1734,13 +1734,13 @@ var storage_gas;
|
|
|
1734
1734
|
}
|
|
1735
1735
|
storage_gas.StorageGas = StorageGas;
|
|
1736
1736
|
class StorageGasConfig {
|
|
1737
|
-
static
|
|
1737
|
+
static TYPE_QNAME = "0x1::storage_gas::StorageGasConfig";
|
|
1738
1738
|
item_config;
|
|
1739
1739
|
byte_config;
|
|
1740
1740
|
}
|
|
1741
1741
|
storage_gas.StorageGasConfig = StorageGasConfig;
|
|
1742
1742
|
class UsageGasConfig {
|
|
1743
|
-
static
|
|
1743
|
+
static TYPE_QNAME = "0x1::storage_gas::UsageGasConfig";
|
|
1744
1744
|
target_usage;
|
|
1745
1745
|
read_curve;
|
|
1746
1746
|
create_curve;
|
|
@@ -1756,7 +1756,7 @@ var storage_gas;
|
|
|
1756
1756
|
var chain_status;
|
|
1757
1757
|
(function (chain_status) {
|
|
1758
1758
|
class GenesisEndMarker {
|
|
1759
|
-
static
|
|
1759
|
+
static TYPE_QNAME = "0x1::chain_status::GenesisEndMarker";
|
|
1760
1760
|
dummy_field;
|
|
1761
1761
|
}
|
|
1762
1762
|
chain_status.GenesisEndMarker = GenesisEndMarker;
|
|
@@ -1769,7 +1769,7 @@ var chain_status;
|
|
|
1769
1769
|
var copyable_any;
|
|
1770
1770
|
(function (copyable_any) {
|
|
1771
1771
|
class Any {
|
|
1772
|
-
static
|
|
1772
|
+
static TYPE_QNAME = "0x1::copyable_any::Any";
|
|
1773
1773
|
type_name;
|
|
1774
1774
|
data;
|
|
1775
1775
|
}
|
|
@@ -1783,18 +1783,18 @@ var copyable_any;
|
|
|
1783
1783
|
var gas_schedule;
|
|
1784
1784
|
(function (gas_schedule) {
|
|
1785
1785
|
class GasEntry {
|
|
1786
|
-
static
|
|
1786
|
+
static TYPE_QNAME = "0x1::gas_schedule::GasEntry";
|
|
1787
1787
|
key;
|
|
1788
1788
|
val;
|
|
1789
1789
|
}
|
|
1790
1790
|
gas_schedule.GasEntry = GasEntry;
|
|
1791
1791
|
class GasSchedule {
|
|
1792
|
-
static
|
|
1792
|
+
static TYPE_QNAME = "0x1::gas_schedule::GasSchedule";
|
|
1793
1793
|
entries;
|
|
1794
1794
|
}
|
|
1795
1795
|
gas_schedule.GasSchedule = GasSchedule;
|
|
1796
1796
|
class GasScheduleV2 {
|
|
1797
|
-
static
|
|
1797
|
+
static TYPE_QNAME = "0x1::gas_schedule::GasScheduleV2";
|
|
1798
1798
|
feature_version;
|
|
1799
1799
|
entries;
|
|
1800
1800
|
}
|
|
@@ -1851,7 +1851,7 @@ class managed_coin extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
1851
1851
|
exports.managed_coin = managed_coin;
|
|
1852
1852
|
(function (managed_coin) {
|
|
1853
1853
|
class Capabilities {
|
|
1854
|
-
static
|
|
1854
|
+
static TYPE_QNAME = "0x1::managed_coin::Capabilities";
|
|
1855
1855
|
burn_cap;
|
|
1856
1856
|
freeze_cap;
|
|
1857
1857
|
mint_cap;
|
|
@@ -1866,17 +1866,17 @@ exports.managed_coin = managed_coin;
|
|
|
1866
1866
|
var ristretto255;
|
|
1867
1867
|
(function (ristretto255) {
|
|
1868
1868
|
class CompressedRistretto {
|
|
1869
|
-
static
|
|
1869
|
+
static TYPE_QNAME = "0x1::ristretto255::CompressedRistretto";
|
|
1870
1870
|
data;
|
|
1871
1871
|
}
|
|
1872
1872
|
ristretto255.CompressedRistretto = CompressedRistretto;
|
|
1873
1873
|
class RistrettoPoint {
|
|
1874
|
-
static
|
|
1874
|
+
static TYPE_QNAME = "0x1::ristretto255::RistrettoPoint";
|
|
1875
1875
|
handle;
|
|
1876
1876
|
}
|
|
1877
1877
|
ristretto255.RistrettoPoint = RistrettoPoint;
|
|
1878
1878
|
class Scalar {
|
|
1879
|
-
static
|
|
1879
|
+
static TYPE_QNAME = "0x1::ristretto255::Scalar";
|
|
1880
1880
|
data;
|
|
1881
1881
|
}
|
|
1882
1882
|
ristretto255.Scalar = Scalar;
|
|
@@ -1926,7 +1926,7 @@ exports.aptos_account = aptos_account;
|
|
|
1926
1926
|
var fixed_point32;
|
|
1927
1927
|
(function (fixed_point32) {
|
|
1928
1928
|
class FixedPoint32 {
|
|
1929
|
-
static
|
|
1929
|
+
static TYPE_QNAME = "0x1::fixed_point32::FixedPoint32";
|
|
1930
1930
|
value;
|
|
1931
1931
|
}
|
|
1932
1932
|
fixed_point32.FixedPoint32 = FixedPoint32;
|
|
@@ -1939,17 +1939,17 @@ var fixed_point32;
|
|
|
1939
1939
|
var multi_ed25519;
|
|
1940
1940
|
(function (multi_ed25519) {
|
|
1941
1941
|
class Signature {
|
|
1942
|
-
static
|
|
1942
|
+
static TYPE_QNAME = "0x1::multi_ed25519::Signature";
|
|
1943
1943
|
bytes;
|
|
1944
1944
|
}
|
|
1945
1945
|
multi_ed25519.Signature = Signature;
|
|
1946
1946
|
class UnvalidatedPublicKey {
|
|
1947
|
-
static
|
|
1947
|
+
static TYPE_QNAME = "0x1::multi_ed25519::UnvalidatedPublicKey";
|
|
1948
1948
|
bytes;
|
|
1949
1949
|
}
|
|
1950
1950
|
multi_ed25519.UnvalidatedPublicKey = UnvalidatedPublicKey;
|
|
1951
1951
|
class ValidatedPublicKey {
|
|
1952
|
-
static
|
|
1952
|
+
static TYPE_QNAME = "0x1::multi_ed25519::ValidatedPublicKey";
|
|
1953
1953
|
bytes;
|
|
1954
1954
|
}
|
|
1955
1955
|
multi_ed25519.ValidatedPublicKey = ValidatedPublicKey;
|
|
@@ -2041,18 +2041,18 @@ exports.staking_proxy = staking_proxy;
|
|
|
2041
2041
|
var state_storage;
|
|
2042
2042
|
(function (state_storage) {
|
|
2043
2043
|
class GasParameter {
|
|
2044
|
-
static
|
|
2044
|
+
static TYPE_QNAME = "0x1::state_storage::GasParameter";
|
|
2045
2045
|
usage;
|
|
2046
2046
|
}
|
|
2047
2047
|
state_storage.GasParameter = GasParameter;
|
|
2048
2048
|
class StateStorageUsage {
|
|
2049
|
-
static
|
|
2049
|
+
static TYPE_QNAME = "0x1::state_storage::StateStorageUsage";
|
|
2050
2050
|
epoch;
|
|
2051
2051
|
usage;
|
|
2052
2052
|
}
|
|
2053
2053
|
state_storage.StateStorageUsage = StateStorageUsage;
|
|
2054
2054
|
class Usage {
|
|
2055
|
-
static
|
|
2055
|
+
static TYPE_QNAME = "0x1::state_storage::Usage";
|
|
2056
2056
|
items;
|
|
2057
2057
|
bytes;
|
|
2058
2058
|
}
|
|
@@ -2066,7 +2066,7 @@ var state_storage;
|
|
|
2066
2066
|
var staking_config;
|
|
2067
2067
|
(function (staking_config) {
|
|
2068
2068
|
class StakingConfig {
|
|
2069
|
-
static
|
|
2069
|
+
static TYPE_QNAME = "0x1::staking_config::StakingConfig";
|
|
2070
2070
|
minimum_stake;
|
|
2071
2071
|
maximum_stake;
|
|
2072
2072
|
recurring_lockup_duration_secs;
|
|
@@ -2109,19 +2109,19 @@ class reconfiguration extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
2109
2109
|
exports.reconfiguration = reconfiguration;
|
|
2110
2110
|
(function (reconfiguration) {
|
|
2111
2111
|
class Configuration {
|
|
2112
|
-
static
|
|
2112
|
+
static TYPE_QNAME = "0x1::reconfiguration::Configuration";
|
|
2113
2113
|
epoch;
|
|
2114
2114
|
last_reconfiguration_time;
|
|
2115
2115
|
events;
|
|
2116
2116
|
}
|
|
2117
2117
|
reconfiguration.Configuration = Configuration;
|
|
2118
2118
|
class DisableReconfiguration {
|
|
2119
|
-
static
|
|
2119
|
+
static TYPE_QNAME = "0x1::reconfiguration::DisableReconfiguration";
|
|
2120
2120
|
dummy_field;
|
|
2121
2121
|
}
|
|
2122
2122
|
reconfiguration.DisableReconfiguration = DisableReconfiguration;
|
|
2123
2123
|
class NewEpochEvent {
|
|
2124
|
-
static
|
|
2124
|
+
static TYPE_QNAME = "0x1::reconfiguration::NewEpochEvent";
|
|
2125
2125
|
epoch;
|
|
2126
2126
|
}
|
|
2127
2127
|
reconfiguration.NewEpochEvent = NewEpochEvent;
|
|
@@ -2134,7 +2134,7 @@ exports.reconfiguration = reconfiguration;
|
|
|
2134
2134
|
var transaction_fee;
|
|
2135
2135
|
(function (transaction_fee) {
|
|
2136
2136
|
class AptosCoinCapabilities {
|
|
2137
|
-
static
|
|
2137
|
+
static TYPE_QNAME = "0x1::transaction_fee::AptosCoinCapabilities";
|
|
2138
2138
|
burn_cap;
|
|
2139
2139
|
}
|
|
2140
2140
|
transaction_fee.AptosCoinCapabilities = AptosCoinCapabilities;
|
|
@@ -2204,12 +2204,12 @@ class aptos_governance extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
2204
2204
|
exports.aptos_governance = aptos_governance;
|
|
2205
2205
|
(function (aptos_governance) {
|
|
2206
2206
|
class ApprovedExecutionHashes {
|
|
2207
|
-
static
|
|
2207
|
+
static TYPE_QNAME = "0x1::aptos_governance::ApprovedExecutionHashes";
|
|
2208
2208
|
hashes;
|
|
2209
2209
|
}
|
|
2210
2210
|
aptos_governance.ApprovedExecutionHashes = ApprovedExecutionHashes;
|
|
2211
2211
|
class CreateProposalEvent {
|
|
2212
|
-
static
|
|
2212
|
+
static TYPE_QNAME = "0x1::aptos_governance::CreateProposalEvent";
|
|
2213
2213
|
proposer;
|
|
2214
2214
|
stake_pool;
|
|
2215
2215
|
proposal_id;
|
|
@@ -2218,39 +2218,39 @@ exports.aptos_governance = aptos_governance;
|
|
|
2218
2218
|
}
|
|
2219
2219
|
aptos_governance.CreateProposalEvent = CreateProposalEvent;
|
|
2220
2220
|
class GovernanceConfig {
|
|
2221
|
-
static
|
|
2221
|
+
static TYPE_QNAME = "0x1::aptos_governance::GovernanceConfig";
|
|
2222
2222
|
min_voting_threshold;
|
|
2223
2223
|
required_proposer_stake;
|
|
2224
2224
|
voting_duration_secs;
|
|
2225
2225
|
}
|
|
2226
2226
|
aptos_governance.GovernanceConfig = GovernanceConfig;
|
|
2227
2227
|
class GovernanceEvents {
|
|
2228
|
-
static
|
|
2228
|
+
static TYPE_QNAME = "0x1::aptos_governance::GovernanceEvents";
|
|
2229
2229
|
create_proposal_events;
|
|
2230
2230
|
update_config_events;
|
|
2231
2231
|
vote_events;
|
|
2232
2232
|
}
|
|
2233
2233
|
aptos_governance.GovernanceEvents = GovernanceEvents;
|
|
2234
2234
|
class GovernanceResponsbility {
|
|
2235
|
-
static
|
|
2235
|
+
static TYPE_QNAME = "0x1::aptos_governance::GovernanceResponsbility";
|
|
2236
2236
|
signer_caps;
|
|
2237
2237
|
}
|
|
2238
2238
|
aptos_governance.GovernanceResponsbility = GovernanceResponsbility;
|
|
2239
2239
|
class RecordKey {
|
|
2240
|
-
static
|
|
2240
|
+
static TYPE_QNAME = "0x1::aptos_governance::RecordKey";
|
|
2241
2241
|
stake_pool;
|
|
2242
2242
|
proposal_id;
|
|
2243
2243
|
}
|
|
2244
2244
|
aptos_governance.RecordKey = RecordKey;
|
|
2245
2245
|
class UpdateConfigEvent {
|
|
2246
|
-
static
|
|
2246
|
+
static TYPE_QNAME = "0x1::aptos_governance::UpdateConfigEvent";
|
|
2247
2247
|
min_voting_threshold;
|
|
2248
2248
|
required_proposer_stake;
|
|
2249
2249
|
voting_duration_secs;
|
|
2250
2250
|
}
|
|
2251
2251
|
aptos_governance.UpdateConfigEvent = UpdateConfigEvent;
|
|
2252
2252
|
class VoteEvent {
|
|
2253
|
-
static
|
|
2253
|
+
static TYPE_QNAME = "0x1::aptos_governance::VoteEvent";
|
|
2254
2254
|
proposal_id;
|
|
2255
2255
|
voter;
|
|
2256
2256
|
stake_pool;
|
|
@@ -2259,7 +2259,7 @@ exports.aptos_governance = aptos_governance;
|
|
|
2259
2259
|
}
|
|
2260
2260
|
aptos_governance.VoteEvent = VoteEvent;
|
|
2261
2261
|
class VotingRecords {
|
|
2262
|
-
static
|
|
2262
|
+
static TYPE_QNAME = "0x1::aptos_governance::VotingRecords";
|
|
2263
2263
|
votes;
|
|
2264
2264
|
}
|
|
2265
2265
|
aptos_governance.VotingRecords = VotingRecords;
|
|
@@ -2272,7 +2272,7 @@ exports.aptos_governance = aptos_governance;
|
|
|
2272
2272
|
var consensus_config;
|
|
2273
2273
|
(function (consensus_config) {
|
|
2274
2274
|
class ConsensusConfig {
|
|
2275
|
-
static
|
|
2275
|
+
static TYPE_QNAME = "0x1::consensus_config::ConsensusConfig";
|
|
2276
2276
|
config;
|
|
2277
2277
|
}
|
|
2278
2278
|
consensus_config.ConsensusConfig = ConsensusConfig;
|
|
@@ -2324,7 +2324,7 @@ class resource_account extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
2324
2324
|
exports.resource_account = resource_account;
|
|
2325
2325
|
(function (resource_account) {
|
|
2326
2326
|
class Container {
|
|
2327
|
-
static
|
|
2327
|
+
static TYPE_QNAME = "0x1::resource_account::Container";
|
|
2328
2328
|
store;
|
|
2329
2329
|
}
|
|
2330
2330
|
resource_account.Container = Container;
|
|
@@ -2479,21 +2479,21 @@ class staking_contract extends sdk_1.aptos.AptosBaseProcessor {
|
|
|
2479
2479
|
exports.staking_contract = staking_contract;
|
|
2480
2480
|
(function (staking_contract) {
|
|
2481
2481
|
class AddDistributionEvent {
|
|
2482
|
-
static
|
|
2482
|
+
static TYPE_QNAME = "0x1::staking_contract::AddDistributionEvent";
|
|
2483
2483
|
operator;
|
|
2484
2484
|
pool_address;
|
|
2485
2485
|
amount;
|
|
2486
2486
|
}
|
|
2487
2487
|
staking_contract.AddDistributionEvent = AddDistributionEvent;
|
|
2488
2488
|
class AddStakeEvent {
|
|
2489
|
-
static
|
|
2489
|
+
static TYPE_QNAME = "0x1::staking_contract::AddStakeEvent";
|
|
2490
2490
|
operator;
|
|
2491
2491
|
pool_address;
|
|
2492
2492
|
amount;
|
|
2493
2493
|
}
|
|
2494
2494
|
staking_contract.AddStakeEvent = AddStakeEvent;
|
|
2495
2495
|
class CreateStakingContractEvent {
|
|
2496
|
-
static
|
|
2496
|
+
static TYPE_QNAME = "0x1::staking_contract::CreateStakingContractEvent";
|
|
2497
2497
|
operator;
|
|
2498
2498
|
voter;
|
|
2499
2499
|
pool_address;
|
|
@@ -2502,7 +2502,7 @@ exports.staking_contract = staking_contract;
|
|
|
2502
2502
|
}
|
|
2503
2503
|
staking_contract.CreateStakingContractEvent = CreateStakingContractEvent;
|
|
2504
2504
|
class DistributeEvent {
|
|
2505
|
-
static
|
|
2505
|
+
static TYPE_QNAME = "0x1::staking_contract::DistributeEvent";
|
|
2506
2506
|
operator;
|
|
2507
2507
|
pool_address;
|
|
2508
2508
|
recipient;
|
|
@@ -2510,7 +2510,7 @@ exports.staking_contract = staking_contract;
|
|
|
2510
2510
|
}
|
|
2511
2511
|
staking_contract.DistributeEvent = DistributeEvent;
|
|
2512
2512
|
class RequestCommissionEvent {
|
|
2513
|
-
static
|
|
2513
|
+
static TYPE_QNAME = "0x1::staking_contract::RequestCommissionEvent";
|
|
2514
2514
|
operator;
|
|
2515
2515
|
pool_address;
|
|
2516
2516
|
accumulated_rewards;
|
|
@@ -2518,13 +2518,13 @@ exports.staking_contract = staking_contract;
|
|
|
2518
2518
|
}
|
|
2519
2519
|
staking_contract.RequestCommissionEvent = RequestCommissionEvent;
|
|
2520
2520
|
class ResetLockupEvent {
|
|
2521
|
-
static
|
|
2521
|
+
static TYPE_QNAME = "0x1::staking_contract::ResetLockupEvent";
|
|
2522
2522
|
operator;
|
|
2523
2523
|
pool_address;
|
|
2524
2524
|
}
|
|
2525
2525
|
staking_contract.ResetLockupEvent = ResetLockupEvent;
|
|
2526
2526
|
class StakingContract {
|
|
2527
|
-
static
|
|
2527
|
+
static TYPE_QNAME = "0x1::staking_contract::StakingContract";
|
|
2528
2528
|
principal;
|
|
2529
2529
|
pool_address;
|
|
2530
2530
|
owner_cap;
|
|
@@ -2534,7 +2534,7 @@ exports.staking_contract = staking_contract;
|
|
|
2534
2534
|
}
|
|
2535
2535
|
staking_contract.StakingContract = StakingContract;
|
|
2536
2536
|
class Store {
|
|
2537
|
-
static
|
|
2537
|
+
static TYPE_QNAME = "0x1::staking_contract::Store";
|
|
2538
2538
|
staking_contracts;
|
|
2539
2539
|
create_staking_contract_events;
|
|
2540
2540
|
update_voter_events;
|
|
@@ -2548,14 +2548,14 @@ exports.staking_contract = staking_contract;
|
|
|
2548
2548
|
}
|
|
2549
2549
|
staking_contract.Store = Store;
|
|
2550
2550
|
class SwitchOperatorEvent {
|
|
2551
|
-
static
|
|
2551
|
+
static TYPE_QNAME = "0x1::staking_contract::SwitchOperatorEvent";
|
|
2552
2552
|
old_operator;
|
|
2553
2553
|
new_operator;
|
|
2554
2554
|
pool_address;
|
|
2555
2555
|
}
|
|
2556
2556
|
staking_contract.SwitchOperatorEvent = SwitchOperatorEvent;
|
|
2557
2557
|
class UnlockStakeEvent {
|
|
2558
|
-
static
|
|
2558
|
+
static TYPE_QNAME = "0x1::staking_contract::UnlockStakeEvent";
|
|
2559
2559
|
operator;
|
|
2560
2560
|
pool_address;
|
|
2561
2561
|
amount;
|
|
@@ -2563,7 +2563,7 @@ exports.staking_contract = staking_contract;
|
|
|
2563
2563
|
}
|
|
2564
2564
|
staking_contract.UnlockStakeEvent = UnlockStakeEvent;
|
|
2565
2565
|
class UpdateVoterEvent {
|
|
2566
|
-
static
|
|
2566
|
+
static TYPE_QNAME = "0x1::staking_contract::UpdateVoterEvent";
|
|
2567
2567
|
operator;
|
|
2568
2568
|
pool_address;
|
|
2569
2569
|
old_voter;
|
|
@@ -2587,7 +2587,7 @@ var system_addresses;
|
|
|
2587
2587
|
var table_with_length;
|
|
2588
2588
|
(function (table_with_length) {
|
|
2589
2589
|
class TableWithLength {
|
|
2590
|
-
static
|
|
2590
|
+
static TYPE_QNAME = "0x1::table_with_length::TableWithLength";
|
|
2591
2591
|
inner;
|
|
2592
2592
|
length;
|
|
2593
2593
|
}
|
|
@@ -2601,7 +2601,7 @@ var table_with_length;
|
|
|
2601
2601
|
var aggregator_factory;
|
|
2602
2602
|
(function (aggregator_factory) {
|
|
2603
2603
|
class AggregatorFactory {
|
|
2604
|
-
static
|
|
2604
|
+
static TYPE_QNAME = "0x1::aggregator_factory::AggregatorFactory";
|
|
2605
2605
|
phantom_table;
|
|
2606
2606
|
}
|
|
2607
2607
|
aggregator_factory.AggregatorFactory = AggregatorFactory;
|
|
@@ -2614,7 +2614,7 @@ var aggregator_factory;
|
|
|
2614
2614
|
var governance_proposal;
|
|
2615
2615
|
(function (governance_proposal) {
|
|
2616
2616
|
class GovernanceProposal {
|
|
2617
|
-
static
|
|
2617
|
+
static TYPE_QNAME = "0x1::governance_proposal::GovernanceProposal";
|
|
2618
2618
|
dummy_field;
|
|
2619
2619
|
}
|
|
2620
2620
|
governance_proposal.GovernanceProposal = GovernanceProposal;
|
|
@@ -2627,13 +2627,13 @@ var governance_proposal;
|
|
|
2627
2627
|
var optional_aggregator;
|
|
2628
2628
|
(function (optional_aggregator) {
|
|
2629
2629
|
class Integer {
|
|
2630
|
-
static
|
|
2630
|
+
static TYPE_QNAME = "0x1::optional_aggregator::Integer";
|
|
2631
2631
|
value;
|
|
2632
2632
|
limit;
|
|
2633
2633
|
}
|
|
2634
2634
|
optional_aggregator.Integer = Integer;
|
|
2635
2635
|
class OptionalAggregator {
|
|
2636
|
-
static
|
|
2636
|
+
static TYPE_QNAME = "0x1::optional_aggregator::OptionalAggregator";
|
|
2637
2637
|
aggregator;
|
|
2638
2638
|
integer;
|
|
2639
2639
|
}
|
|
@@ -2655,7 +2655,7 @@ var transaction_context;
|
|
|
2655
2655
|
var transaction_validation;
|
|
2656
2656
|
(function (transaction_validation) {
|
|
2657
2657
|
class TransactionValidation {
|
|
2658
|
-
static
|
|
2658
|
+
static TYPE_QNAME = "0x1::transaction_validation::TransactionValidation";
|
|
2659
2659
|
module_addr;
|
|
2660
2660
|
module_name;
|
|
2661
2661
|
script_prologue_name;
|