@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/src/builtin/aptos/0x1.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { Address, MoveModule } from "aptos-sdk/src/generated";
|
|
|
9
9
|
|
|
10
10
|
export namespace acl {
|
|
11
11
|
export class ACL {
|
|
12
|
-
static
|
|
12
|
+
static TYPE_QNAME = "0x1::acl::ACL";
|
|
13
13
|
list: Address[];
|
|
14
14
|
}
|
|
15
15
|
|
|
@@ -23,7 +23,7 @@ export namespace acl {
|
|
|
23
23
|
|
|
24
24
|
export namespace any {
|
|
25
25
|
export class Any {
|
|
26
|
-
static
|
|
26
|
+
static TYPE_QNAME = "0x1::any::Any";
|
|
27
27
|
type_name: string;
|
|
28
28
|
data: string;
|
|
29
29
|
}
|
|
@@ -79,13 +79,13 @@ export class code extends aptos.AptosBaseProcessor {
|
|
|
79
79
|
|
|
80
80
|
export namespace code {
|
|
81
81
|
export class AllowedDep {
|
|
82
|
-
static
|
|
82
|
+
static TYPE_QNAME = "0x1::code::AllowedDep";
|
|
83
83
|
account: Address;
|
|
84
84
|
module_name: string;
|
|
85
85
|
}
|
|
86
86
|
|
|
87
87
|
export class ModuleMetadata {
|
|
88
|
-
static
|
|
88
|
+
static TYPE_QNAME = "0x1::code::ModuleMetadata";
|
|
89
89
|
name: string;
|
|
90
90
|
source: string;
|
|
91
91
|
source_map: string;
|
|
@@ -93,13 +93,13 @@ export namespace code {
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
export class PackageDep {
|
|
96
|
-
static
|
|
96
|
+
static TYPE_QNAME = "0x1::code::PackageDep";
|
|
97
97
|
account: Address;
|
|
98
98
|
package_name: string;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
export class PackageMetadata {
|
|
102
|
-
static
|
|
102
|
+
static TYPE_QNAME = "0x1::code::PackageMetadata";
|
|
103
103
|
name: string;
|
|
104
104
|
upgrade_policy: code.UpgradePolicy;
|
|
105
105
|
upgrade_number: bigint;
|
|
@@ -111,12 +111,12 @@ export namespace code {
|
|
|
111
111
|
}
|
|
112
112
|
|
|
113
113
|
export class PackageRegistry {
|
|
114
|
-
static
|
|
114
|
+
static TYPE_QNAME = "0x1::code::PackageRegistry";
|
|
115
115
|
packages: code.PackageMetadata[];
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
export class UpgradePolicy {
|
|
119
|
-
static
|
|
119
|
+
static TYPE_QNAME = "0x1::code::UpgradePolicy";
|
|
120
120
|
policy: number;
|
|
121
121
|
}
|
|
122
122
|
|
|
@@ -219,17 +219,17 @@ export class coin extends aptos.AptosBaseProcessor {
|
|
|
219
219
|
|
|
220
220
|
export namespace coin {
|
|
221
221
|
export class BurnCapability<T0> {
|
|
222
|
-
static
|
|
222
|
+
static TYPE_QNAME = "0x1::coin::BurnCapability";
|
|
223
223
|
dummy_field: Boolean;
|
|
224
224
|
}
|
|
225
225
|
|
|
226
226
|
export class Coin<T0> {
|
|
227
|
-
static
|
|
227
|
+
static TYPE_QNAME = "0x1::coin::Coin";
|
|
228
228
|
value: bigint;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
export class CoinInfo<T0> {
|
|
232
|
-
static
|
|
232
|
+
static TYPE_QNAME = "0x1::coin::CoinInfo";
|
|
233
233
|
name: string;
|
|
234
234
|
symbol: string;
|
|
235
235
|
decimals: number;
|
|
@@ -237,7 +237,7 @@ export namespace coin {
|
|
|
237
237
|
}
|
|
238
238
|
|
|
239
239
|
export class CoinStore<T0> {
|
|
240
|
-
static
|
|
240
|
+
static TYPE_QNAME = "0x1::coin::CoinStore";
|
|
241
241
|
coin: coin.Coin<T0>;
|
|
242
242
|
frozen: Boolean;
|
|
243
243
|
deposit_events: event.EventHandle<coin.DepositEvent>;
|
|
@@ -245,7 +245,7 @@ export namespace coin {
|
|
|
245
245
|
}
|
|
246
246
|
|
|
247
247
|
export class DepositEvent {
|
|
248
|
-
static
|
|
248
|
+
static TYPE_QNAME = "0x1::coin::DepositEvent";
|
|
249
249
|
amount: bigint;
|
|
250
250
|
}
|
|
251
251
|
|
|
@@ -256,22 +256,22 @@ export namespace coin {
|
|
|
256
256
|
}
|
|
257
257
|
|
|
258
258
|
export class FreezeCapability<T0> {
|
|
259
|
-
static
|
|
259
|
+
static TYPE_QNAME = "0x1::coin::FreezeCapability";
|
|
260
260
|
dummy_field: Boolean;
|
|
261
261
|
}
|
|
262
262
|
|
|
263
263
|
export class MintCapability<T0> {
|
|
264
|
-
static
|
|
264
|
+
static TYPE_QNAME = "0x1::coin::MintCapability";
|
|
265
265
|
dummy_field: Boolean;
|
|
266
266
|
}
|
|
267
267
|
|
|
268
268
|
export class SupplyConfig {
|
|
269
|
-
static
|
|
269
|
+
static TYPE_QNAME = "0x1::coin::SupplyConfig";
|
|
270
270
|
allow_upgrades: Boolean;
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
export class WithdrawEvent {
|
|
274
|
-
static
|
|
274
|
+
static TYPE_QNAME = "0x1::coin::WithdrawEvent";
|
|
275
275
|
amount: bigint;
|
|
276
276
|
}
|
|
277
277
|
|
|
@@ -315,12 +315,12 @@ export namespace coin {
|
|
|
315
315
|
|
|
316
316
|
export namespace guid {
|
|
317
317
|
export class GUID {
|
|
318
|
-
static
|
|
318
|
+
static TYPE_QNAME = "0x1::guid::GUID";
|
|
319
319
|
id: guid.ID;
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
export class ID {
|
|
323
|
-
static
|
|
323
|
+
static TYPE_QNAME = "0x1::guid::ID";
|
|
324
324
|
creation_num: bigint;
|
|
325
325
|
addr: Address;
|
|
326
326
|
}
|
|
@@ -392,7 +392,7 @@ export class block extends aptos.AptosBaseProcessor {
|
|
|
392
392
|
|
|
393
393
|
export namespace block {
|
|
394
394
|
export class BlockResource {
|
|
395
|
-
static
|
|
395
|
+
static TYPE_QNAME = "0x1::block::BlockResource";
|
|
396
396
|
height: bigint;
|
|
397
397
|
epoch_interval: bigint;
|
|
398
398
|
new_block_events: event.EventHandle<block.NewBlockEvent>;
|
|
@@ -400,7 +400,7 @@ export namespace block {
|
|
|
400
400
|
}
|
|
401
401
|
|
|
402
402
|
export class NewBlockEvent {
|
|
403
|
-
static
|
|
403
|
+
static TYPE_QNAME = "0x1::block::NewBlockEvent";
|
|
404
404
|
hash: Address;
|
|
405
405
|
epoch: bigint;
|
|
406
406
|
round: bigint;
|
|
@@ -418,7 +418,7 @@ export namespace block {
|
|
|
418
418
|
}
|
|
419
419
|
|
|
420
420
|
export class UpdateEpochIntervalEvent {
|
|
421
|
-
static
|
|
421
|
+
static TYPE_QNAME = "0x1::block::UpdateEpochIntervalEvent";
|
|
422
422
|
old_epoch_interval: bigint;
|
|
423
423
|
new_epoch_interval: bigint;
|
|
424
424
|
}
|
|
@@ -457,7 +457,7 @@ export namespace error {
|
|
|
457
457
|
|
|
458
458
|
export namespace event {
|
|
459
459
|
export class EventHandle<T0> {
|
|
460
|
-
static
|
|
460
|
+
static TYPE_QNAME = "0x1::event::EventHandle";
|
|
461
461
|
counter: bigint;
|
|
462
462
|
guid: guid.GUID;
|
|
463
463
|
}
|
|
@@ -795,7 +795,7 @@ export class stake extends aptos.AptosBaseProcessor {
|
|
|
795
795
|
|
|
796
796
|
export namespace stake {
|
|
797
797
|
export class AddStakeEvent {
|
|
798
|
-
static
|
|
798
|
+
static TYPE_QNAME = "0x1::stake::AddStakeEvent";
|
|
799
799
|
pool_address: Address;
|
|
800
800
|
amount_added: bigint;
|
|
801
801
|
}
|
|
@@ -807,17 +807,17 @@ export namespace stake {
|
|
|
807
807
|
}
|
|
808
808
|
|
|
809
809
|
export class AllowedValidators {
|
|
810
|
-
static
|
|
810
|
+
static TYPE_QNAME = "0x1::stake::AllowedValidators";
|
|
811
811
|
accounts: Address[];
|
|
812
812
|
}
|
|
813
813
|
|
|
814
814
|
export class AptosCoinCapabilities {
|
|
815
|
-
static
|
|
815
|
+
static TYPE_QNAME = "0x1::stake::AptosCoinCapabilities";
|
|
816
816
|
mint_cap: coin.MintCapability<aptos_coin.AptosCoin>;
|
|
817
817
|
}
|
|
818
818
|
|
|
819
819
|
export class DistributeRewardsEvent {
|
|
820
|
-
static
|
|
820
|
+
static TYPE_QNAME = "0x1::stake::DistributeRewardsEvent";
|
|
821
821
|
pool_address: Address;
|
|
822
822
|
rewards_amount: bigint;
|
|
823
823
|
}
|
|
@@ -829,7 +829,7 @@ export namespace stake {
|
|
|
829
829
|
}
|
|
830
830
|
|
|
831
831
|
export class IncreaseLockupEvent {
|
|
832
|
-
static
|
|
832
|
+
static TYPE_QNAME = "0x1::stake::IncreaseLockupEvent";
|
|
833
833
|
pool_address: Address;
|
|
834
834
|
old_locked_until_secs: bigint;
|
|
835
835
|
new_locked_until_secs: bigint;
|
|
@@ -842,13 +842,13 @@ export namespace stake {
|
|
|
842
842
|
}
|
|
843
843
|
|
|
844
844
|
export class IndividualValidatorPerformance {
|
|
845
|
-
static
|
|
845
|
+
static TYPE_QNAME = "0x1::stake::IndividualValidatorPerformance";
|
|
846
846
|
successful_proposals: bigint;
|
|
847
847
|
failed_proposals: bigint;
|
|
848
848
|
}
|
|
849
849
|
|
|
850
850
|
export class JoinValidatorSetEvent {
|
|
851
|
-
static
|
|
851
|
+
static TYPE_QNAME = "0x1::stake::JoinValidatorSetEvent";
|
|
852
852
|
pool_address: Address;
|
|
853
853
|
}
|
|
854
854
|
|
|
@@ -859,7 +859,7 @@ export namespace stake {
|
|
|
859
859
|
}
|
|
860
860
|
|
|
861
861
|
export class LeaveValidatorSetEvent {
|
|
862
|
-
static
|
|
862
|
+
static TYPE_QNAME = "0x1::stake::LeaveValidatorSetEvent";
|
|
863
863
|
pool_address: Address;
|
|
864
864
|
}
|
|
865
865
|
|
|
@@ -870,12 +870,12 @@ export namespace stake {
|
|
|
870
870
|
}
|
|
871
871
|
|
|
872
872
|
export class OwnerCapability {
|
|
873
|
-
static
|
|
873
|
+
static TYPE_QNAME = "0x1::stake::OwnerCapability";
|
|
874
874
|
pool_address: Address;
|
|
875
875
|
}
|
|
876
876
|
|
|
877
877
|
export class ReactivateStakeEvent {
|
|
878
|
-
static
|
|
878
|
+
static TYPE_QNAME = "0x1::stake::ReactivateStakeEvent";
|
|
879
879
|
pool_address: Address;
|
|
880
880
|
amount: bigint;
|
|
881
881
|
}
|
|
@@ -887,7 +887,7 @@ export namespace stake {
|
|
|
887
887
|
}
|
|
888
888
|
|
|
889
889
|
export class RegisterValidatorCandidateEvent {
|
|
890
|
-
static
|
|
890
|
+
static TYPE_QNAME = "0x1::stake::RegisterValidatorCandidateEvent";
|
|
891
891
|
pool_address: Address;
|
|
892
892
|
}
|
|
893
893
|
|
|
@@ -898,7 +898,7 @@ export namespace stake {
|
|
|
898
898
|
}
|
|
899
899
|
|
|
900
900
|
export class RotateConsensusKeyEvent {
|
|
901
|
-
static
|
|
901
|
+
static TYPE_QNAME = "0x1::stake::RotateConsensusKeyEvent";
|
|
902
902
|
pool_address: Address;
|
|
903
903
|
old_consensus_pubkey: string;
|
|
904
904
|
new_consensus_pubkey: string;
|
|
@@ -911,7 +911,7 @@ export namespace stake {
|
|
|
911
911
|
}
|
|
912
912
|
|
|
913
913
|
export class SetOperatorEvent {
|
|
914
|
-
static
|
|
914
|
+
static TYPE_QNAME = "0x1::stake::SetOperatorEvent";
|
|
915
915
|
pool_address: Address;
|
|
916
916
|
old_operator: Address;
|
|
917
917
|
new_operator: Address;
|
|
@@ -924,7 +924,7 @@ export namespace stake {
|
|
|
924
924
|
}
|
|
925
925
|
|
|
926
926
|
export class StakePool {
|
|
927
|
-
static
|
|
927
|
+
static TYPE_QNAME = "0x1::stake::StakePool";
|
|
928
928
|
active: coin.Coin<aptos_coin.AptosCoin>;
|
|
929
929
|
inactive: coin.Coin<aptos_coin.AptosCoin>;
|
|
930
930
|
pending_active: coin.Coin<aptos_coin.AptosCoin>;
|
|
@@ -947,7 +947,7 @@ export namespace stake {
|
|
|
947
947
|
}
|
|
948
948
|
|
|
949
949
|
export class UnlockStakeEvent {
|
|
950
|
-
static
|
|
950
|
+
static TYPE_QNAME = "0x1::stake::UnlockStakeEvent";
|
|
951
951
|
pool_address: Address;
|
|
952
952
|
amount_unlocked: bigint;
|
|
953
953
|
}
|
|
@@ -959,7 +959,7 @@ export namespace stake {
|
|
|
959
959
|
}
|
|
960
960
|
|
|
961
961
|
export class UpdateNetworkAndFullnodeAddressesEvent {
|
|
962
|
-
static
|
|
962
|
+
static TYPE_QNAME = "0x1::stake::UpdateNetworkAndFullnodeAddressesEvent";
|
|
963
963
|
pool_address: Address;
|
|
964
964
|
old_network_addresses: string;
|
|
965
965
|
new_network_addresses: string;
|
|
@@ -974,7 +974,7 @@ export namespace stake {
|
|
|
974
974
|
}
|
|
975
975
|
|
|
976
976
|
export class ValidatorConfig {
|
|
977
|
-
static
|
|
977
|
+
static TYPE_QNAME = "0x1::stake::ValidatorConfig";
|
|
978
978
|
consensus_pubkey: string;
|
|
979
979
|
network_addresses: string;
|
|
980
980
|
fullnode_addresses: string;
|
|
@@ -982,19 +982,19 @@ export namespace stake {
|
|
|
982
982
|
}
|
|
983
983
|
|
|
984
984
|
export class ValidatorInfo {
|
|
985
|
-
static
|
|
985
|
+
static TYPE_QNAME = "0x1::stake::ValidatorInfo";
|
|
986
986
|
addr: Address;
|
|
987
987
|
voting_power: bigint;
|
|
988
988
|
config: stake.ValidatorConfig;
|
|
989
989
|
}
|
|
990
990
|
|
|
991
991
|
export class ValidatorPerformance {
|
|
992
|
-
static
|
|
992
|
+
static TYPE_QNAME = "0x1::stake::ValidatorPerformance";
|
|
993
993
|
validators: stake.IndividualValidatorPerformance[];
|
|
994
994
|
}
|
|
995
995
|
|
|
996
996
|
export class ValidatorSet {
|
|
997
|
-
static
|
|
997
|
+
static TYPE_QNAME = "0x1::stake::ValidatorSet";
|
|
998
998
|
consensus_scheme: number;
|
|
999
999
|
active_validators: stake.ValidatorInfo[];
|
|
1000
1000
|
pending_inactive: stake.ValidatorInfo[];
|
|
@@ -1004,7 +1004,7 @@ export namespace stake {
|
|
|
1004
1004
|
}
|
|
1005
1005
|
|
|
1006
1006
|
export class WithdrawStakeEvent {
|
|
1007
|
-
static
|
|
1007
|
+
static TYPE_QNAME = "0x1::stake::WithdrawStakeEvent";
|
|
1008
1008
|
pool_address: Address;
|
|
1009
1009
|
amount_withdrawn: bigint;
|
|
1010
1010
|
}
|
|
@@ -1103,12 +1103,12 @@ export namespace stake {
|
|
|
1103
1103
|
|
|
1104
1104
|
export namespace table {
|
|
1105
1105
|
export class Box<T0> {
|
|
1106
|
-
static
|
|
1106
|
+
static TYPE_QNAME = "0x1::table::Box";
|
|
1107
1107
|
val: T0;
|
|
1108
1108
|
}
|
|
1109
1109
|
|
|
1110
1110
|
export class Table<T0, T1> {
|
|
1111
|
-
static
|
|
1111
|
+
static TYPE_QNAME = "0x1::table::Table";
|
|
1112
1112
|
handle: Address;
|
|
1113
1113
|
}
|
|
1114
1114
|
|
|
@@ -1131,7 +1131,7 @@ export namespace math64 {
|
|
|
1131
1131
|
|
|
1132
1132
|
export namespace option {
|
|
1133
1133
|
export class Option<T0> {
|
|
1134
|
-
static
|
|
1134
|
+
static TYPE_QNAME = "0x1::option::Option";
|
|
1135
1135
|
vec: T0[] | string;
|
|
1136
1136
|
}
|
|
1137
1137
|
|
|
@@ -1154,7 +1154,7 @@ export namespace signer {
|
|
|
1154
1154
|
|
|
1155
1155
|
export namespace string {
|
|
1156
1156
|
export class String {
|
|
1157
|
-
static
|
|
1157
|
+
static TYPE_QNAME = "0x1::string::String";
|
|
1158
1158
|
bytes: string;
|
|
1159
1159
|
}
|
|
1160
1160
|
|
|
@@ -1228,7 +1228,7 @@ export class voting extends aptos.AptosBaseProcessor {
|
|
|
1228
1228
|
|
|
1229
1229
|
export namespace voting {
|
|
1230
1230
|
export class CreateProposalEvent {
|
|
1231
|
-
static
|
|
1231
|
+
static TYPE_QNAME = "0x1::voting::CreateProposalEvent";
|
|
1232
1232
|
proposal_id: bigint;
|
|
1233
1233
|
early_resolution_vote_threshold: option.Option<bigint>;
|
|
1234
1234
|
execution_hash: string;
|
|
@@ -1244,7 +1244,7 @@ export namespace voting {
|
|
|
1244
1244
|
}
|
|
1245
1245
|
|
|
1246
1246
|
export class Proposal<T0> {
|
|
1247
|
-
static
|
|
1247
|
+
static TYPE_QNAME = "0x1::voting::Proposal";
|
|
1248
1248
|
proposer: Address;
|
|
1249
1249
|
execution_content: option.Option<T0>;
|
|
1250
1250
|
metadata: simple_map.SimpleMap<string, string>;
|
|
@@ -1260,7 +1260,7 @@ export namespace voting {
|
|
|
1260
1260
|
}
|
|
1261
1261
|
|
|
1262
1262
|
export class RegisterForumEvent {
|
|
1263
|
-
static
|
|
1263
|
+
static TYPE_QNAME = "0x1::voting::RegisterForumEvent";
|
|
1264
1264
|
hosting_account: Address;
|
|
1265
1265
|
proposal_type_info: type_info.TypeInfo;
|
|
1266
1266
|
}
|
|
@@ -1272,7 +1272,7 @@ export namespace voting {
|
|
|
1272
1272
|
}
|
|
1273
1273
|
|
|
1274
1274
|
export class ResolveProposal {
|
|
1275
|
-
static
|
|
1275
|
+
static TYPE_QNAME = "0x1::voting::ResolveProposal";
|
|
1276
1276
|
proposal_id: bigint;
|
|
1277
1277
|
yes_votes: bigint;
|
|
1278
1278
|
no_votes: bigint;
|
|
@@ -1280,7 +1280,7 @@ export namespace voting {
|
|
|
1280
1280
|
}
|
|
1281
1281
|
|
|
1282
1282
|
export class VoteEvent {
|
|
1283
|
-
static
|
|
1283
|
+
static TYPE_QNAME = "0x1::voting::VoteEvent";
|
|
1284
1284
|
proposal_id: bigint;
|
|
1285
1285
|
num_votes: bigint;
|
|
1286
1286
|
}
|
|
@@ -1292,7 +1292,7 @@ export namespace voting {
|
|
|
1292
1292
|
}
|
|
1293
1293
|
|
|
1294
1294
|
export class VotingEvents {
|
|
1295
|
-
static
|
|
1295
|
+
static TYPE_QNAME = "0x1::voting::VotingEvents";
|
|
1296
1296
|
create_proposal_events: event.EventHandle<voting.CreateProposalEvent>;
|
|
1297
1297
|
register_forum_events: event.EventHandle<voting.RegisterForumEvent>;
|
|
1298
1298
|
resolve_proposal_events: event.EventHandle<voting.ResolveProposal>;
|
|
@@ -1300,7 +1300,7 @@ export namespace voting {
|
|
|
1300
1300
|
}
|
|
1301
1301
|
|
|
1302
1302
|
export class VotingForum<T0> {
|
|
1303
|
-
static
|
|
1303
|
+
static TYPE_QNAME = "0x1::voting::VotingForum";
|
|
1304
1304
|
proposals: table.Table<bigint, voting.Proposal<T0>>;
|
|
1305
1305
|
events: voting.VotingEvents;
|
|
1306
1306
|
next_proposal_id: bigint;
|
|
@@ -1400,7 +1400,7 @@ export class account extends aptos.AptosBaseProcessor {
|
|
|
1400
1400
|
|
|
1401
1401
|
export namespace account {
|
|
1402
1402
|
export class Account {
|
|
1403
|
-
static
|
|
1403
|
+
static TYPE_QNAME = "0x1::account::Account";
|
|
1404
1404
|
authentication_key: string;
|
|
1405
1405
|
sequence_number: bigint;
|
|
1406
1406
|
guid_creation_num: bigint;
|
|
@@ -1411,12 +1411,12 @@ export namespace account {
|
|
|
1411
1411
|
}
|
|
1412
1412
|
|
|
1413
1413
|
export class CapabilityOffer<T0> {
|
|
1414
|
-
static
|
|
1414
|
+
static TYPE_QNAME = "0x1::account::CapabilityOffer";
|
|
1415
1415
|
for: option.Option<Address>;
|
|
1416
1416
|
}
|
|
1417
1417
|
|
|
1418
1418
|
export class CoinRegisterEvent {
|
|
1419
|
-
static
|
|
1419
|
+
static TYPE_QNAME = "0x1::account::CoinRegisterEvent";
|
|
1420
1420
|
type_info: type_info.TypeInfo;
|
|
1421
1421
|
}
|
|
1422
1422
|
|
|
@@ -1427,7 +1427,7 @@ export namespace account {
|
|
|
1427
1427
|
}
|
|
1428
1428
|
|
|
1429
1429
|
export class KeyRotationEvent {
|
|
1430
|
-
static
|
|
1430
|
+
static TYPE_QNAME = "0x1::account::KeyRotationEvent";
|
|
1431
1431
|
old_authentication_key: string;
|
|
1432
1432
|
new_authentication_key: string;
|
|
1433
1433
|
}
|
|
@@ -1439,23 +1439,23 @@ export namespace account {
|
|
|
1439
1439
|
}
|
|
1440
1440
|
|
|
1441
1441
|
export class OriginatingAddress {
|
|
1442
|
-
static
|
|
1442
|
+
static TYPE_QNAME = "0x1::account::OriginatingAddress";
|
|
1443
1443
|
address_map: table.Table<Address, Address>;
|
|
1444
1444
|
}
|
|
1445
1445
|
|
|
1446
1446
|
export class RotationCapability {
|
|
1447
|
-
static
|
|
1447
|
+
static TYPE_QNAME = "0x1::account::RotationCapability";
|
|
1448
1448
|
account: Address;
|
|
1449
1449
|
}
|
|
1450
1450
|
|
|
1451
1451
|
export class RotationCapabilityOfferProofChallenge {
|
|
1452
|
-
static
|
|
1452
|
+
static TYPE_QNAME = "0x1::account::RotationCapabilityOfferProofChallenge";
|
|
1453
1453
|
sequence_number: bigint;
|
|
1454
1454
|
recipient_address: Address;
|
|
1455
1455
|
}
|
|
1456
1456
|
|
|
1457
1457
|
export class RotationProofChallenge {
|
|
1458
|
-
static
|
|
1458
|
+
static TYPE_QNAME = "0x1::account::RotationProofChallenge";
|
|
1459
1459
|
sequence_number: bigint;
|
|
1460
1460
|
originator: Address;
|
|
1461
1461
|
current_auth_key: Address;
|
|
@@ -1463,18 +1463,18 @@ export namespace account {
|
|
|
1463
1463
|
}
|
|
1464
1464
|
|
|
1465
1465
|
export class SignerCapability {
|
|
1466
|
-
static
|
|
1466
|
+
static TYPE_QNAME = "0x1::account::SignerCapability";
|
|
1467
1467
|
account: Address;
|
|
1468
1468
|
}
|
|
1469
1469
|
|
|
1470
1470
|
export class SignerCapabilityOfferProofChallenge {
|
|
1471
|
-
static
|
|
1471
|
+
static TYPE_QNAME = "0x1::account::SignerCapabilityOfferProofChallenge";
|
|
1472
1472
|
sequence_number: bigint;
|
|
1473
1473
|
recipient_address: Address;
|
|
1474
1474
|
}
|
|
1475
1475
|
|
|
1476
1476
|
export class SignerCapabilityOfferProofChallengeV2 {
|
|
1477
|
-
static
|
|
1477
|
+
static TYPE_QNAME = "0x1::account::SignerCapabilityOfferProofChallengeV2";
|
|
1478
1478
|
sequence_number: bigint;
|
|
1479
1479
|
source_address: Address;
|
|
1480
1480
|
recipient_address: Address;
|
|
@@ -1510,23 +1510,23 @@ export namespace account {
|
|
|
1510
1510
|
|
|
1511
1511
|
export namespace ed25519 {
|
|
1512
1512
|
export class Signature {
|
|
1513
|
-
static
|
|
1513
|
+
static TYPE_QNAME = "0x1::ed25519::Signature";
|
|
1514
1514
|
bytes: string;
|
|
1515
1515
|
}
|
|
1516
1516
|
|
|
1517
1517
|
export class SignedMessage<T0> {
|
|
1518
|
-
static
|
|
1518
|
+
static TYPE_QNAME = "0x1::ed25519::SignedMessage";
|
|
1519
1519
|
type_info: type_info.TypeInfo;
|
|
1520
1520
|
inner: T0;
|
|
1521
1521
|
}
|
|
1522
1522
|
|
|
1523
1523
|
export class UnvalidatedPublicKey {
|
|
1524
|
-
static
|
|
1524
|
+
static TYPE_QNAME = "0x1::ed25519::UnvalidatedPublicKey";
|
|
1525
1525
|
bytes: string;
|
|
1526
1526
|
}
|
|
1527
1527
|
|
|
1528
1528
|
export class ValidatedPublicKey {
|
|
1529
|
-
static
|
|
1529
|
+
static TYPE_QNAME = "0x1::ed25519::ValidatedPublicKey";
|
|
1530
1530
|
bytes: string;
|
|
1531
1531
|
}
|
|
1532
1532
|
|
|
@@ -1540,13 +1540,13 @@ export namespace ed25519 {
|
|
|
1540
1540
|
|
|
1541
1541
|
export namespace genesis {
|
|
1542
1542
|
export class AccountMap {
|
|
1543
|
-
static
|
|
1543
|
+
static TYPE_QNAME = "0x1::genesis::AccountMap";
|
|
1544
1544
|
account_address: Address;
|
|
1545
1545
|
balance: bigint;
|
|
1546
1546
|
}
|
|
1547
1547
|
|
|
1548
1548
|
export class EmployeeAccountMap {
|
|
1549
|
-
static
|
|
1549
|
+
static TYPE_QNAME = "0x1::genesis::EmployeeAccountMap";
|
|
1550
1550
|
accounts: Address[];
|
|
1551
1551
|
validator: genesis.ValidatorConfigurationWithCommission;
|
|
1552
1552
|
vesting_schedule_numerator: bigint[];
|
|
@@ -1555,7 +1555,7 @@ export namespace genesis {
|
|
|
1555
1555
|
}
|
|
1556
1556
|
|
|
1557
1557
|
export class ValidatorConfiguration {
|
|
1558
|
-
static
|
|
1558
|
+
static TYPE_QNAME = "0x1::genesis::ValidatorConfiguration";
|
|
1559
1559
|
owner_address: Address;
|
|
1560
1560
|
operator_address: Address;
|
|
1561
1561
|
voter_address: Address;
|
|
@@ -1567,7 +1567,7 @@ export namespace genesis {
|
|
|
1567
1567
|
}
|
|
1568
1568
|
|
|
1569
1569
|
export class ValidatorConfigurationWithCommission {
|
|
1570
|
-
static
|
|
1570
|
+
static TYPE_QNAME = "0x1::genesis::ValidatorConfigurationWithCommission";
|
|
1571
1571
|
validator_config: genesis.ValidatorConfiguration;
|
|
1572
1572
|
commission_percentage: bigint;
|
|
1573
1573
|
join_during_genesis: Boolean;
|
|
@@ -1621,12 +1621,12 @@ export class version extends aptos.AptosBaseProcessor {
|
|
|
1621
1621
|
|
|
1622
1622
|
export namespace version {
|
|
1623
1623
|
export class SetVersionCapability {
|
|
1624
|
-
static
|
|
1624
|
+
static TYPE_QNAME = "0x1::version::SetVersionCapability";
|
|
1625
1625
|
dummy_field: Boolean;
|
|
1626
1626
|
}
|
|
1627
1627
|
|
|
1628
1628
|
export class Version {
|
|
1629
|
-
static
|
|
1629
|
+
static TYPE_QNAME = "0x1::version::Version";
|
|
1630
1630
|
major: bigint;
|
|
1631
1631
|
}
|
|
1632
1632
|
|
|
@@ -1945,14 +1945,14 @@ export class vesting extends aptos.AptosBaseProcessor {
|
|
|
1945
1945
|
|
|
1946
1946
|
export namespace vesting {
|
|
1947
1947
|
export class AdminStore {
|
|
1948
|
-
static
|
|
1948
|
+
static TYPE_QNAME = "0x1::vesting::AdminStore";
|
|
1949
1949
|
vesting_contracts: Address[];
|
|
1950
1950
|
nonce: bigint;
|
|
1951
1951
|
create_events: event.EventHandle<vesting.CreateVestingContractEvent>;
|
|
1952
1952
|
}
|
|
1953
1953
|
|
|
1954
1954
|
export class AdminWithdrawEvent {
|
|
1955
|
-
static
|
|
1955
|
+
static TYPE_QNAME = "0x1::vesting::AdminWithdrawEvent";
|
|
1956
1956
|
admin: Address;
|
|
1957
1957
|
vesting_contract_address: Address;
|
|
1958
1958
|
amount: bigint;
|
|
@@ -1965,7 +1965,7 @@ export namespace vesting {
|
|
|
1965
1965
|
}
|
|
1966
1966
|
|
|
1967
1967
|
export class CreateVestingContractEvent {
|
|
1968
|
-
static
|
|
1968
|
+
static TYPE_QNAME = "0x1::vesting::CreateVestingContractEvent";
|
|
1969
1969
|
operator: Address;
|
|
1970
1970
|
voter: Address;
|
|
1971
1971
|
grant_amount: bigint;
|
|
@@ -1982,7 +1982,7 @@ export namespace vesting {
|
|
|
1982
1982
|
}
|
|
1983
1983
|
|
|
1984
1984
|
export class DistributeEvent {
|
|
1985
|
-
static
|
|
1985
|
+
static TYPE_QNAME = "0x1::vesting::DistributeEvent";
|
|
1986
1986
|
admin: Address;
|
|
1987
1987
|
vesting_contract_address: Address;
|
|
1988
1988
|
amount: bigint;
|
|
@@ -1995,7 +1995,7 @@ export namespace vesting {
|
|
|
1995
1995
|
}
|
|
1996
1996
|
|
|
1997
1997
|
export class ResetLockupEvent {
|
|
1998
|
-
static
|
|
1998
|
+
static TYPE_QNAME = "0x1::vesting::ResetLockupEvent";
|
|
1999
1999
|
admin: Address;
|
|
2000
2000
|
vesting_contract_address: Address;
|
|
2001
2001
|
staking_pool_address: Address;
|
|
@@ -2009,7 +2009,7 @@ export namespace vesting {
|
|
|
2009
2009
|
}
|
|
2010
2010
|
|
|
2011
2011
|
export class SetBeneficiaryEvent {
|
|
2012
|
-
static
|
|
2012
|
+
static TYPE_QNAME = "0x1::vesting::SetBeneficiaryEvent";
|
|
2013
2013
|
admin: Address;
|
|
2014
2014
|
vesting_contract_address: Address;
|
|
2015
2015
|
shareholder: Address;
|
|
@@ -2024,7 +2024,7 @@ export namespace vesting {
|
|
|
2024
2024
|
}
|
|
2025
2025
|
|
|
2026
2026
|
export class StakingInfo {
|
|
2027
|
-
static
|
|
2027
|
+
static TYPE_QNAME = "0x1::vesting::StakingInfo";
|
|
2028
2028
|
pool_address: Address;
|
|
2029
2029
|
operator: Address;
|
|
2030
2030
|
voter: Address;
|
|
@@ -2032,7 +2032,7 @@ export namespace vesting {
|
|
|
2032
2032
|
}
|
|
2033
2033
|
|
|
2034
2034
|
export class TerminateEvent {
|
|
2035
|
-
static
|
|
2035
|
+
static TYPE_QNAME = "0x1::vesting::TerminateEvent";
|
|
2036
2036
|
admin: Address;
|
|
2037
2037
|
vesting_contract_address: Address;
|
|
2038
2038
|
}
|
|
@@ -2044,7 +2044,7 @@ export namespace vesting {
|
|
|
2044
2044
|
}
|
|
2045
2045
|
|
|
2046
2046
|
export class UnlockRewardsEvent {
|
|
2047
|
-
static
|
|
2047
|
+
static TYPE_QNAME = "0x1::vesting::UnlockRewardsEvent";
|
|
2048
2048
|
admin: Address;
|
|
2049
2049
|
vesting_contract_address: Address;
|
|
2050
2050
|
staking_pool_address: Address;
|
|
@@ -2058,7 +2058,7 @@ export namespace vesting {
|
|
|
2058
2058
|
}
|
|
2059
2059
|
|
|
2060
2060
|
export class UpdateOperatorEvent {
|
|
2061
|
-
static
|
|
2061
|
+
static TYPE_QNAME = "0x1::vesting::UpdateOperatorEvent";
|
|
2062
2062
|
admin: Address;
|
|
2063
2063
|
vesting_contract_address: Address;
|
|
2064
2064
|
staking_pool_address: Address;
|
|
@@ -2074,7 +2074,7 @@ export namespace vesting {
|
|
|
2074
2074
|
}
|
|
2075
2075
|
|
|
2076
2076
|
export class UpdateVoterEvent {
|
|
2077
|
-
static
|
|
2077
|
+
static TYPE_QNAME = "0x1::vesting::UpdateVoterEvent";
|
|
2078
2078
|
admin: Address;
|
|
2079
2079
|
vesting_contract_address: Address;
|
|
2080
2080
|
staking_pool_address: Address;
|
|
@@ -2089,7 +2089,7 @@ export namespace vesting {
|
|
|
2089
2089
|
}
|
|
2090
2090
|
|
|
2091
2091
|
export class VestEvent {
|
|
2092
|
-
static
|
|
2092
|
+
static TYPE_QNAME = "0x1::vesting::VestEvent";
|
|
2093
2093
|
admin: Address;
|
|
2094
2094
|
vesting_contract_address: Address;
|
|
2095
2095
|
staking_pool_address: Address;
|
|
@@ -2104,12 +2104,12 @@ export namespace vesting {
|
|
|
2104
2104
|
}
|
|
2105
2105
|
|
|
2106
2106
|
export class VestingAccountManagement {
|
|
2107
|
-
static
|
|
2107
|
+
static TYPE_QNAME = "0x1::vesting::VestingAccountManagement";
|
|
2108
2108
|
roles: simple_map.SimpleMap<string, Address>;
|
|
2109
2109
|
}
|
|
2110
2110
|
|
|
2111
2111
|
export class VestingContract {
|
|
2112
|
-
static
|
|
2112
|
+
static TYPE_QNAME = "0x1::vesting::VestingContract";
|
|
2113
2113
|
state: bigint;
|
|
2114
2114
|
admin: Address;
|
|
2115
2115
|
grant_pool: pool_u64.Pool;
|
|
@@ -2131,7 +2131,7 @@ export namespace vesting {
|
|
|
2131
2131
|
}
|
|
2132
2132
|
|
|
2133
2133
|
export class VestingSchedule {
|
|
2134
|
-
static
|
|
2134
|
+
static TYPE_QNAME = "0x1::vesting::VestingSchedule";
|
|
2135
2135
|
schedule: fixed_point32.FixedPoint32[];
|
|
2136
2136
|
start_timestamp_secs: bigint;
|
|
2137
2137
|
period_duration: bigint;
|
|
@@ -2225,32 +2225,32 @@ export namespace vesting {
|
|
|
2225
2225
|
|
|
2226
2226
|
export namespace bls12381 {
|
|
2227
2227
|
export class AggrOrMultiSignature {
|
|
2228
|
-
static
|
|
2228
|
+
static TYPE_QNAME = "0x1::bls12381::AggrOrMultiSignature";
|
|
2229
2229
|
bytes: string;
|
|
2230
2230
|
}
|
|
2231
2231
|
|
|
2232
2232
|
export class AggrPublicKeysWithPoP {
|
|
2233
|
-
static
|
|
2233
|
+
static TYPE_QNAME = "0x1::bls12381::AggrPublicKeysWithPoP";
|
|
2234
2234
|
bytes: string;
|
|
2235
2235
|
}
|
|
2236
2236
|
|
|
2237
2237
|
export class ProofOfPossession {
|
|
2238
|
-
static
|
|
2238
|
+
static TYPE_QNAME = "0x1::bls12381::ProofOfPossession";
|
|
2239
2239
|
bytes: string;
|
|
2240
2240
|
}
|
|
2241
2241
|
|
|
2242
2242
|
export class PublicKey {
|
|
2243
|
-
static
|
|
2243
|
+
static TYPE_QNAME = "0x1::bls12381::PublicKey";
|
|
2244
2244
|
bytes: string;
|
|
2245
2245
|
}
|
|
2246
2246
|
|
|
2247
2247
|
export class PublicKeyWithPoP {
|
|
2248
|
-
static
|
|
2248
|
+
static TYPE_QNAME = "0x1::bls12381::PublicKeyWithPoP";
|
|
2249
2249
|
bytes: string;
|
|
2250
2250
|
}
|
|
2251
2251
|
|
|
2252
2252
|
export class Signature {
|
|
2253
|
-
static
|
|
2253
|
+
static TYPE_QNAME = "0x1::bls12381::Signature";
|
|
2254
2254
|
bytes: string;
|
|
2255
2255
|
}
|
|
2256
2256
|
|
|
@@ -2264,7 +2264,7 @@ export namespace bls12381 {
|
|
|
2264
2264
|
|
|
2265
2265
|
export namespace chain_id {
|
|
2266
2266
|
export class ChainId {
|
|
2267
|
-
static
|
|
2267
|
+
static TYPE_QNAME = "0x1::chain_id::ChainId";
|
|
2268
2268
|
id: number;
|
|
2269
2269
|
}
|
|
2270
2270
|
|
|
@@ -2278,7 +2278,7 @@ export namespace chain_id {
|
|
|
2278
2278
|
|
|
2279
2279
|
export namespace features {
|
|
2280
2280
|
export class Features {
|
|
2281
|
-
static
|
|
2281
|
+
static TYPE_QNAME = "0x1::features::Features";
|
|
2282
2282
|
features: string;
|
|
2283
2283
|
}
|
|
2284
2284
|
|
|
@@ -2301,7 +2301,7 @@ export namespace from_bcs {
|
|
|
2301
2301
|
|
|
2302
2302
|
export namespace pool_u64 {
|
|
2303
2303
|
export class Pool {
|
|
2304
|
-
static
|
|
2304
|
+
static TYPE_QNAME = "0x1::pool_u64::Pool";
|
|
2305
2305
|
shareholders_limit: bigint;
|
|
2306
2306
|
total_coins: bigint;
|
|
2307
2307
|
total_shares: bigint;
|
|
@@ -2320,12 +2320,12 @@ export namespace pool_u64 {
|
|
|
2320
2320
|
|
|
2321
2321
|
export namespace secp256k1 {
|
|
2322
2322
|
export class ECDSARawPublicKey {
|
|
2323
|
-
static
|
|
2323
|
+
static TYPE_QNAME = "0x1::secp256k1::ECDSARawPublicKey";
|
|
2324
2324
|
bytes: string;
|
|
2325
2325
|
}
|
|
2326
2326
|
|
|
2327
2327
|
export class ECDSASignature {
|
|
2328
|
-
static
|
|
2328
|
+
static TYPE_QNAME = "0x1::secp256k1::ECDSASignature";
|
|
2329
2329
|
bytes: string;
|
|
2330
2330
|
}
|
|
2331
2331
|
|
|
@@ -2339,7 +2339,7 @@ export namespace secp256k1 {
|
|
|
2339
2339
|
|
|
2340
2340
|
export namespace timestamp {
|
|
2341
2341
|
export class CurrentTimeMicroseconds {
|
|
2342
|
-
static
|
|
2342
|
+
static TYPE_QNAME = "0x1::timestamp::CurrentTimeMicroseconds";
|
|
2343
2343
|
microseconds: bigint;
|
|
2344
2344
|
}
|
|
2345
2345
|
|
|
@@ -2353,7 +2353,7 @@ export namespace timestamp {
|
|
|
2353
2353
|
|
|
2354
2354
|
export namespace type_info {
|
|
2355
2355
|
export class TypeInfo {
|
|
2356
|
-
static
|
|
2356
|
+
static TYPE_QNAME = "0x1::type_info::TypeInfo";
|
|
2357
2357
|
account_address: Address;
|
|
2358
2358
|
module_name: string;
|
|
2359
2359
|
struct_name: string;
|
|
@@ -2369,7 +2369,7 @@ export namespace type_info {
|
|
|
2369
2369
|
|
|
2370
2370
|
export namespace aggregator {
|
|
2371
2371
|
export class Aggregator {
|
|
2372
|
-
static
|
|
2372
|
+
static TYPE_QNAME = "0x1::aggregator::Aggregator";
|
|
2373
2373
|
handle: Address;
|
|
2374
2374
|
key: Address;
|
|
2375
2375
|
limit: bigint;
|
|
@@ -2442,22 +2442,22 @@ export class aptos_coin extends aptos.AptosBaseProcessor {
|
|
|
2442
2442
|
|
|
2443
2443
|
export namespace aptos_coin {
|
|
2444
2444
|
export class AptosCoin {
|
|
2445
|
-
static
|
|
2445
|
+
static TYPE_QNAME = "0x1::aptos_coin::AptosCoin";
|
|
2446
2446
|
dummy_field: Boolean;
|
|
2447
2447
|
}
|
|
2448
2448
|
|
|
2449
2449
|
export class DelegatedMintCapability {
|
|
2450
|
-
static
|
|
2450
|
+
static TYPE_QNAME = "0x1::aptos_coin::DelegatedMintCapability";
|
|
2451
2451
|
to: Address;
|
|
2452
2452
|
}
|
|
2453
2453
|
|
|
2454
2454
|
export class Delegations {
|
|
2455
|
-
static
|
|
2455
|
+
static TYPE_QNAME = "0x1::aptos_coin::Delegations";
|
|
2456
2456
|
inner: aptos_coin.DelegatedMintCapability[];
|
|
2457
2457
|
}
|
|
2458
2458
|
|
|
2459
2459
|
export class MintCapStore {
|
|
2460
|
-
static
|
|
2460
|
+
static TYPE_QNAME = "0x1::aptos_coin::MintCapStore";
|
|
2461
2461
|
mint_cap: coin.MintCapability<aptos_coin.AptosCoin>;
|
|
2462
2462
|
}
|
|
2463
2463
|
|
|
@@ -2498,7 +2498,7 @@ export namespace aptos_hash {
|
|
|
2498
2498
|
|
|
2499
2499
|
export namespace bit_vector {
|
|
2500
2500
|
export class BitVector {
|
|
2501
|
-
static
|
|
2501
|
+
static TYPE_QNAME = "0x1::bit_vector::BitVector";
|
|
2502
2502
|
length: bigint;
|
|
2503
2503
|
bit_field: Boolean[];
|
|
2504
2504
|
}
|
|
@@ -2513,22 +2513,22 @@ export namespace bit_vector {
|
|
|
2513
2513
|
|
|
2514
2514
|
export namespace capability {
|
|
2515
2515
|
export class Cap<T0> {
|
|
2516
|
-
static
|
|
2516
|
+
static TYPE_QNAME = "0x1::capability::Cap";
|
|
2517
2517
|
root: Address;
|
|
2518
2518
|
}
|
|
2519
2519
|
|
|
2520
2520
|
export class CapDelegateState<T0> {
|
|
2521
|
-
static
|
|
2521
|
+
static TYPE_QNAME = "0x1::capability::CapDelegateState";
|
|
2522
2522
|
root: Address;
|
|
2523
2523
|
}
|
|
2524
2524
|
|
|
2525
2525
|
export class CapState<T0> {
|
|
2526
|
-
static
|
|
2526
|
+
static TYPE_QNAME = "0x1::capability::CapState";
|
|
2527
2527
|
delegates: Address[];
|
|
2528
2528
|
}
|
|
2529
2529
|
|
|
2530
2530
|
export class LinearCap<T0> {
|
|
2531
|
-
static
|
|
2531
|
+
static TYPE_QNAME = "0x1::capability::LinearCap";
|
|
2532
2532
|
root: Address;
|
|
2533
2533
|
}
|
|
2534
2534
|
|
|
@@ -2542,7 +2542,7 @@ export namespace capability {
|
|
|
2542
2542
|
|
|
2543
2543
|
export namespace comparator {
|
|
2544
2544
|
export class Result {
|
|
2545
|
-
static
|
|
2545
|
+
static TYPE_QNAME = "0x1::comparator::Result";
|
|
2546
2546
|
inner: number;
|
|
2547
2547
|
}
|
|
2548
2548
|
|
|
@@ -2556,13 +2556,13 @@ export namespace comparator {
|
|
|
2556
2556
|
|
|
2557
2557
|
export namespace simple_map {
|
|
2558
2558
|
export class Element<T0, T1> {
|
|
2559
|
-
static
|
|
2559
|
+
static TYPE_QNAME = "0x1::simple_map::Element";
|
|
2560
2560
|
key: T0;
|
|
2561
2561
|
value: T1;
|
|
2562
2562
|
}
|
|
2563
2563
|
|
|
2564
2564
|
export class SimpleMap<T0, T1> {
|
|
2565
|
-
static
|
|
2565
|
+
static TYPE_QNAME = "0x1::simple_map::SimpleMap";
|
|
2566
2566
|
data: simple_map.Element<T0, T1>[];
|
|
2567
2567
|
}
|
|
2568
2568
|
|
|
@@ -2576,20 +2576,20 @@ export namespace simple_map {
|
|
|
2576
2576
|
|
|
2577
2577
|
export namespace storage_gas {
|
|
2578
2578
|
export class GasCurve {
|
|
2579
|
-
static
|
|
2579
|
+
static TYPE_QNAME = "0x1::storage_gas::GasCurve";
|
|
2580
2580
|
min_gas: bigint;
|
|
2581
2581
|
max_gas: bigint;
|
|
2582
2582
|
points: storage_gas.Point[];
|
|
2583
2583
|
}
|
|
2584
2584
|
|
|
2585
2585
|
export class Point {
|
|
2586
|
-
static
|
|
2586
|
+
static TYPE_QNAME = "0x1::storage_gas::Point";
|
|
2587
2587
|
x: bigint;
|
|
2588
2588
|
y: bigint;
|
|
2589
2589
|
}
|
|
2590
2590
|
|
|
2591
2591
|
export class StorageGas {
|
|
2592
|
-
static
|
|
2592
|
+
static TYPE_QNAME = "0x1::storage_gas::StorageGas";
|
|
2593
2593
|
per_item_read: bigint;
|
|
2594
2594
|
per_item_create: bigint;
|
|
2595
2595
|
per_item_write: bigint;
|
|
@@ -2599,13 +2599,13 @@ export namespace storage_gas {
|
|
|
2599
2599
|
}
|
|
2600
2600
|
|
|
2601
2601
|
export class StorageGasConfig {
|
|
2602
|
-
static
|
|
2602
|
+
static TYPE_QNAME = "0x1::storage_gas::StorageGasConfig";
|
|
2603
2603
|
item_config: storage_gas.UsageGasConfig;
|
|
2604
2604
|
byte_config: storage_gas.UsageGasConfig;
|
|
2605
2605
|
}
|
|
2606
2606
|
|
|
2607
2607
|
export class UsageGasConfig {
|
|
2608
|
-
static
|
|
2608
|
+
static TYPE_QNAME = "0x1::storage_gas::UsageGasConfig";
|
|
2609
2609
|
target_usage: bigint;
|
|
2610
2610
|
read_curve: storage_gas.GasCurve;
|
|
2611
2611
|
create_curve: storage_gas.GasCurve;
|
|
@@ -2622,7 +2622,7 @@ export namespace storage_gas {
|
|
|
2622
2622
|
|
|
2623
2623
|
export namespace chain_status {
|
|
2624
2624
|
export class GenesisEndMarker {
|
|
2625
|
-
static
|
|
2625
|
+
static TYPE_QNAME = "0x1::chain_status::GenesisEndMarker";
|
|
2626
2626
|
dummy_field: Boolean;
|
|
2627
2627
|
}
|
|
2628
2628
|
|
|
@@ -2636,7 +2636,7 @@ export namespace chain_status {
|
|
|
2636
2636
|
|
|
2637
2637
|
export namespace copyable_any {
|
|
2638
2638
|
export class Any {
|
|
2639
|
-
static
|
|
2639
|
+
static TYPE_QNAME = "0x1::copyable_any::Any";
|
|
2640
2640
|
type_name: string;
|
|
2641
2641
|
data: string;
|
|
2642
2642
|
}
|
|
@@ -2651,18 +2651,18 @@ export namespace copyable_any {
|
|
|
2651
2651
|
|
|
2652
2652
|
export namespace gas_schedule {
|
|
2653
2653
|
export class GasEntry {
|
|
2654
|
-
static
|
|
2654
|
+
static TYPE_QNAME = "0x1::gas_schedule::GasEntry";
|
|
2655
2655
|
key: string;
|
|
2656
2656
|
val: bigint;
|
|
2657
2657
|
}
|
|
2658
2658
|
|
|
2659
2659
|
export class GasSchedule {
|
|
2660
|
-
static
|
|
2660
|
+
static TYPE_QNAME = "0x1::gas_schedule::GasSchedule";
|
|
2661
2661
|
entries: gas_schedule.GasEntry[];
|
|
2662
2662
|
}
|
|
2663
2663
|
|
|
2664
2664
|
export class GasScheduleV2 {
|
|
2665
|
-
static
|
|
2665
|
+
static TYPE_QNAME = "0x1::gas_schedule::GasScheduleV2";
|
|
2666
2666
|
feature_version: bigint;
|
|
2667
2667
|
entries: gas_schedule.GasEntry[];
|
|
2668
2668
|
}
|
|
@@ -2742,7 +2742,7 @@ export class managed_coin extends aptos.AptosBaseProcessor {
|
|
|
2742
2742
|
|
|
2743
2743
|
export namespace managed_coin {
|
|
2744
2744
|
export class Capabilities<T0> {
|
|
2745
|
-
static
|
|
2745
|
+
static TYPE_QNAME = "0x1::managed_coin::Capabilities";
|
|
2746
2746
|
burn_cap: coin.BurnCapability<T0>;
|
|
2747
2747
|
freeze_cap: coin.FreezeCapability<T0>;
|
|
2748
2748
|
mint_cap: coin.MintCapability<T0>;
|
|
@@ -2781,17 +2781,17 @@ export namespace managed_coin {
|
|
|
2781
2781
|
|
|
2782
2782
|
export namespace ristretto255 {
|
|
2783
2783
|
export class CompressedRistretto {
|
|
2784
|
-
static
|
|
2784
|
+
static TYPE_QNAME = "0x1::ristretto255::CompressedRistretto";
|
|
2785
2785
|
data: string;
|
|
2786
2786
|
}
|
|
2787
2787
|
|
|
2788
2788
|
export class RistrettoPoint {
|
|
2789
|
-
static
|
|
2789
|
+
static TYPE_QNAME = "0x1::ristretto255::RistrettoPoint";
|
|
2790
2790
|
handle: bigint;
|
|
2791
2791
|
}
|
|
2792
2792
|
|
|
2793
2793
|
export class Scalar {
|
|
2794
|
-
static
|
|
2794
|
+
static TYPE_QNAME = "0x1::ristretto255::Scalar";
|
|
2795
2795
|
data: string;
|
|
2796
2796
|
}
|
|
2797
2797
|
|
|
@@ -2872,7 +2872,7 @@ export namespace aptos_account {
|
|
|
2872
2872
|
|
|
2873
2873
|
export namespace fixed_point32 {
|
|
2874
2874
|
export class FixedPoint32 {
|
|
2875
|
-
static
|
|
2875
|
+
static TYPE_QNAME = "0x1::fixed_point32::FixedPoint32";
|
|
2876
2876
|
value: bigint;
|
|
2877
2877
|
}
|
|
2878
2878
|
|
|
@@ -2886,17 +2886,17 @@ export namespace fixed_point32 {
|
|
|
2886
2886
|
|
|
2887
2887
|
export namespace multi_ed25519 {
|
|
2888
2888
|
export class Signature {
|
|
2889
|
-
static
|
|
2889
|
+
static TYPE_QNAME = "0x1::multi_ed25519::Signature";
|
|
2890
2890
|
bytes: string;
|
|
2891
2891
|
}
|
|
2892
2892
|
|
|
2893
2893
|
export class UnvalidatedPublicKey {
|
|
2894
|
-
static
|
|
2894
|
+
static TYPE_QNAME = "0x1::multi_ed25519::UnvalidatedPublicKey";
|
|
2895
2895
|
bytes: string;
|
|
2896
2896
|
}
|
|
2897
2897
|
|
|
2898
2898
|
export class ValidatedPublicKey {
|
|
2899
|
-
static
|
|
2899
|
+
static TYPE_QNAME = "0x1::multi_ed25519::ValidatedPublicKey";
|
|
2900
2900
|
bytes: string;
|
|
2901
2901
|
}
|
|
2902
2902
|
|
|
@@ -3097,18 +3097,18 @@ export namespace staking_proxy {
|
|
|
3097
3097
|
|
|
3098
3098
|
export namespace state_storage {
|
|
3099
3099
|
export class GasParameter {
|
|
3100
|
-
static
|
|
3100
|
+
static TYPE_QNAME = "0x1::state_storage::GasParameter";
|
|
3101
3101
|
usage: state_storage.Usage;
|
|
3102
3102
|
}
|
|
3103
3103
|
|
|
3104
3104
|
export class StateStorageUsage {
|
|
3105
|
-
static
|
|
3105
|
+
static TYPE_QNAME = "0x1::state_storage::StateStorageUsage";
|
|
3106
3106
|
epoch: bigint;
|
|
3107
3107
|
usage: state_storage.Usage;
|
|
3108
3108
|
}
|
|
3109
3109
|
|
|
3110
3110
|
export class Usage {
|
|
3111
|
-
static
|
|
3111
|
+
static TYPE_QNAME = "0x1::state_storage::Usage";
|
|
3112
3112
|
items: bigint;
|
|
3113
3113
|
bytes: bigint;
|
|
3114
3114
|
}
|
|
@@ -3123,7 +3123,7 @@ export namespace state_storage {
|
|
|
3123
3123
|
|
|
3124
3124
|
export namespace staking_config {
|
|
3125
3125
|
export class StakingConfig {
|
|
3126
|
-
static
|
|
3126
|
+
static TYPE_QNAME = "0x1::staking_config::StakingConfig";
|
|
3127
3127
|
minimum_stake: bigint;
|
|
3128
3128
|
maximum_stake: bigint;
|
|
3129
3129
|
recurring_lockup_duration_secs: bigint;
|
|
@@ -3176,19 +3176,19 @@ export class reconfiguration extends aptos.AptosBaseProcessor {
|
|
|
3176
3176
|
|
|
3177
3177
|
export namespace reconfiguration {
|
|
3178
3178
|
export class Configuration {
|
|
3179
|
-
static
|
|
3179
|
+
static TYPE_QNAME = "0x1::reconfiguration::Configuration";
|
|
3180
3180
|
epoch: bigint;
|
|
3181
3181
|
last_reconfiguration_time: bigint;
|
|
3182
3182
|
events: event.EventHandle<reconfiguration.NewEpochEvent>;
|
|
3183
3183
|
}
|
|
3184
3184
|
|
|
3185
3185
|
export class DisableReconfiguration {
|
|
3186
|
-
static
|
|
3186
|
+
static TYPE_QNAME = "0x1::reconfiguration::DisableReconfiguration";
|
|
3187
3187
|
dummy_field: Boolean;
|
|
3188
3188
|
}
|
|
3189
3189
|
|
|
3190
3190
|
export class NewEpochEvent {
|
|
3191
|
-
static
|
|
3191
|
+
static TYPE_QNAME = "0x1::reconfiguration::NewEpochEvent";
|
|
3192
3192
|
epoch: bigint;
|
|
3193
3193
|
}
|
|
3194
3194
|
|
|
@@ -3208,7 +3208,7 @@ export namespace reconfiguration {
|
|
|
3208
3208
|
|
|
3209
3209
|
export namespace transaction_fee {
|
|
3210
3210
|
export class AptosCoinCapabilities {
|
|
3211
|
-
static
|
|
3211
|
+
static TYPE_QNAME = "0x1::transaction_fee::AptosCoinCapabilities";
|
|
3212
3212
|
burn_cap: coin.BurnCapability<aptos_coin.AptosCoin>;
|
|
3213
3213
|
}
|
|
3214
3214
|
|
|
@@ -3318,12 +3318,12 @@ export class aptos_governance extends aptos.AptosBaseProcessor {
|
|
|
3318
3318
|
|
|
3319
3319
|
export namespace aptos_governance {
|
|
3320
3320
|
export class ApprovedExecutionHashes {
|
|
3321
|
-
static
|
|
3321
|
+
static TYPE_QNAME = "0x1::aptos_governance::ApprovedExecutionHashes";
|
|
3322
3322
|
hashes: simple_map.SimpleMap<bigint, string>;
|
|
3323
3323
|
}
|
|
3324
3324
|
|
|
3325
3325
|
export class CreateProposalEvent {
|
|
3326
|
-
static
|
|
3326
|
+
static TYPE_QNAME = "0x1::aptos_governance::CreateProposalEvent";
|
|
3327
3327
|
proposer: Address;
|
|
3328
3328
|
stake_pool: Address;
|
|
3329
3329
|
proposal_id: bigint;
|
|
@@ -3338,32 +3338,32 @@ export namespace aptos_governance {
|
|
|
3338
3338
|
}
|
|
3339
3339
|
|
|
3340
3340
|
export class GovernanceConfig {
|
|
3341
|
-
static
|
|
3341
|
+
static TYPE_QNAME = "0x1::aptos_governance::GovernanceConfig";
|
|
3342
3342
|
min_voting_threshold: bigint;
|
|
3343
3343
|
required_proposer_stake: bigint;
|
|
3344
3344
|
voting_duration_secs: bigint;
|
|
3345
3345
|
}
|
|
3346
3346
|
|
|
3347
3347
|
export class GovernanceEvents {
|
|
3348
|
-
static
|
|
3348
|
+
static TYPE_QNAME = "0x1::aptos_governance::GovernanceEvents";
|
|
3349
3349
|
create_proposal_events: event.EventHandle<aptos_governance.CreateProposalEvent>;
|
|
3350
3350
|
update_config_events: event.EventHandle<aptos_governance.UpdateConfigEvent>;
|
|
3351
3351
|
vote_events: event.EventHandle<aptos_governance.VoteEvent>;
|
|
3352
3352
|
}
|
|
3353
3353
|
|
|
3354
3354
|
export class GovernanceResponsbility {
|
|
3355
|
-
static
|
|
3355
|
+
static TYPE_QNAME = "0x1::aptos_governance::GovernanceResponsbility";
|
|
3356
3356
|
signer_caps: simple_map.SimpleMap<Address, account.SignerCapability>;
|
|
3357
3357
|
}
|
|
3358
3358
|
|
|
3359
3359
|
export class RecordKey {
|
|
3360
|
-
static
|
|
3360
|
+
static TYPE_QNAME = "0x1::aptos_governance::RecordKey";
|
|
3361
3361
|
stake_pool: Address;
|
|
3362
3362
|
proposal_id: bigint;
|
|
3363
3363
|
}
|
|
3364
3364
|
|
|
3365
3365
|
export class UpdateConfigEvent {
|
|
3366
|
-
static
|
|
3366
|
+
static TYPE_QNAME = "0x1::aptos_governance::UpdateConfigEvent";
|
|
3367
3367
|
min_voting_threshold: bigint;
|
|
3368
3368
|
required_proposer_stake: bigint;
|
|
3369
3369
|
voting_duration_secs: bigint;
|
|
@@ -3376,7 +3376,7 @@ export namespace aptos_governance {
|
|
|
3376
3376
|
}
|
|
3377
3377
|
|
|
3378
3378
|
export class VoteEvent {
|
|
3379
|
-
static
|
|
3379
|
+
static TYPE_QNAME = "0x1::aptos_governance::VoteEvent";
|
|
3380
3380
|
proposal_id: bigint;
|
|
3381
3381
|
voter: Address;
|
|
3382
3382
|
stake_pool: Address;
|
|
@@ -3391,7 +3391,7 @@ export namespace aptos_governance {
|
|
|
3391
3391
|
}
|
|
3392
3392
|
|
|
3393
3393
|
export class VotingRecords {
|
|
3394
|
-
static
|
|
3394
|
+
static TYPE_QNAME = "0x1::aptos_governance::VotingRecords";
|
|
3395
3395
|
votes: table.Table<aptos_governance.RecordKey, Boolean>;
|
|
3396
3396
|
}
|
|
3397
3397
|
|
|
@@ -3423,7 +3423,7 @@ export namespace aptos_governance {
|
|
|
3423
3423
|
|
|
3424
3424
|
export namespace consensus_config {
|
|
3425
3425
|
export class ConsensusConfig {
|
|
3426
|
-
static
|
|
3426
|
+
static TYPE_QNAME = "0x1::consensus_config::ConsensusConfig";
|
|
3427
3427
|
config: string;
|
|
3428
3428
|
}
|
|
3429
3429
|
|
|
@@ -3500,7 +3500,7 @@ export class resource_account extends aptos.AptosBaseProcessor {
|
|
|
3500
3500
|
|
|
3501
3501
|
export namespace resource_account {
|
|
3502
3502
|
export class Container {
|
|
3503
|
-
static
|
|
3503
|
+
static TYPE_QNAME = "0x1::resource_account::Container";
|
|
3504
3504
|
store: simple_map.SimpleMap<Address, account.SignerCapability>;
|
|
3505
3505
|
}
|
|
3506
3506
|
|
|
@@ -3801,7 +3801,7 @@ export class staking_contract extends aptos.AptosBaseProcessor {
|
|
|
3801
3801
|
|
|
3802
3802
|
export namespace staking_contract {
|
|
3803
3803
|
export class AddDistributionEvent {
|
|
3804
|
-
static
|
|
3804
|
+
static TYPE_QNAME = "0x1::staking_contract::AddDistributionEvent";
|
|
3805
3805
|
operator: Address;
|
|
3806
3806
|
pool_address: Address;
|
|
3807
3807
|
amount: bigint;
|
|
@@ -3814,7 +3814,7 @@ export namespace staking_contract {
|
|
|
3814
3814
|
}
|
|
3815
3815
|
|
|
3816
3816
|
export class AddStakeEvent {
|
|
3817
|
-
static
|
|
3817
|
+
static TYPE_QNAME = "0x1::staking_contract::AddStakeEvent";
|
|
3818
3818
|
operator: Address;
|
|
3819
3819
|
pool_address: Address;
|
|
3820
3820
|
amount: bigint;
|
|
@@ -3827,7 +3827,7 @@ export namespace staking_contract {
|
|
|
3827
3827
|
}
|
|
3828
3828
|
|
|
3829
3829
|
export class CreateStakingContractEvent {
|
|
3830
|
-
static
|
|
3830
|
+
static TYPE_QNAME = "0x1::staking_contract::CreateStakingContractEvent";
|
|
3831
3831
|
operator: Address;
|
|
3832
3832
|
voter: Address;
|
|
3833
3833
|
pool_address: Address;
|
|
@@ -3842,7 +3842,7 @@ export namespace staking_contract {
|
|
|
3842
3842
|
}
|
|
3843
3843
|
|
|
3844
3844
|
export class DistributeEvent {
|
|
3845
|
-
static
|
|
3845
|
+
static TYPE_QNAME = "0x1::staking_contract::DistributeEvent";
|
|
3846
3846
|
operator: Address;
|
|
3847
3847
|
pool_address: Address;
|
|
3848
3848
|
recipient: Address;
|
|
@@ -3856,7 +3856,7 @@ export namespace staking_contract {
|
|
|
3856
3856
|
}
|
|
3857
3857
|
|
|
3858
3858
|
export class RequestCommissionEvent {
|
|
3859
|
-
static
|
|
3859
|
+
static TYPE_QNAME = "0x1::staking_contract::RequestCommissionEvent";
|
|
3860
3860
|
operator: Address;
|
|
3861
3861
|
pool_address: Address;
|
|
3862
3862
|
accumulated_rewards: bigint;
|
|
@@ -3870,7 +3870,7 @@ export namespace staking_contract {
|
|
|
3870
3870
|
}
|
|
3871
3871
|
|
|
3872
3872
|
export class ResetLockupEvent {
|
|
3873
|
-
static
|
|
3873
|
+
static TYPE_QNAME = "0x1::staking_contract::ResetLockupEvent";
|
|
3874
3874
|
operator: Address;
|
|
3875
3875
|
pool_address: Address;
|
|
3876
3876
|
}
|
|
@@ -3882,7 +3882,7 @@ export namespace staking_contract {
|
|
|
3882
3882
|
}
|
|
3883
3883
|
|
|
3884
3884
|
export class StakingContract {
|
|
3885
|
-
static
|
|
3885
|
+
static TYPE_QNAME = "0x1::staking_contract::StakingContract";
|
|
3886
3886
|
principal: bigint;
|
|
3887
3887
|
pool_address: Address;
|
|
3888
3888
|
owner_cap: stake.OwnerCapability;
|
|
@@ -3892,7 +3892,7 @@ export namespace staking_contract {
|
|
|
3892
3892
|
}
|
|
3893
3893
|
|
|
3894
3894
|
export class Store {
|
|
3895
|
-
static
|
|
3895
|
+
static TYPE_QNAME = "0x1::staking_contract::Store";
|
|
3896
3896
|
staking_contracts: simple_map.SimpleMap<
|
|
3897
3897
|
Address,
|
|
3898
3898
|
staking_contract.StakingContract
|
|
@@ -3909,7 +3909,7 @@ export namespace staking_contract {
|
|
|
3909
3909
|
}
|
|
3910
3910
|
|
|
3911
3911
|
export class SwitchOperatorEvent {
|
|
3912
|
-
static
|
|
3912
|
+
static TYPE_QNAME = "0x1::staking_contract::SwitchOperatorEvent";
|
|
3913
3913
|
old_operator: Address;
|
|
3914
3914
|
new_operator: Address;
|
|
3915
3915
|
pool_address: Address;
|
|
@@ -3922,7 +3922,7 @@ export namespace staking_contract {
|
|
|
3922
3922
|
}
|
|
3923
3923
|
|
|
3924
3924
|
export class UnlockStakeEvent {
|
|
3925
|
-
static
|
|
3925
|
+
static TYPE_QNAME = "0x1::staking_contract::UnlockStakeEvent";
|
|
3926
3926
|
operator: Address;
|
|
3927
3927
|
pool_address: Address;
|
|
3928
3928
|
amount: bigint;
|
|
@@ -3936,7 +3936,7 @@ export namespace staking_contract {
|
|
|
3936
3936
|
}
|
|
3937
3937
|
|
|
3938
3938
|
export class UpdateVoterEvent {
|
|
3939
|
-
static
|
|
3939
|
+
static TYPE_QNAME = "0x1::staking_contract::UpdateVoterEvent";
|
|
3940
3940
|
operator: Address;
|
|
3941
3941
|
pool_address: Address;
|
|
3942
3942
|
old_voter: Address;
|
|
@@ -4030,7 +4030,7 @@ export namespace system_addresses {
|
|
|
4030
4030
|
|
|
4031
4031
|
export namespace table_with_length {
|
|
4032
4032
|
export class TableWithLength<T0, T1> {
|
|
4033
|
-
static
|
|
4033
|
+
static TYPE_QNAME = "0x1::table_with_length::TableWithLength";
|
|
4034
4034
|
inner: table.Table<T0, T1>;
|
|
4035
4035
|
length: bigint;
|
|
4036
4036
|
}
|
|
@@ -4045,7 +4045,7 @@ export namespace table_with_length {
|
|
|
4045
4045
|
|
|
4046
4046
|
export namespace aggregator_factory {
|
|
4047
4047
|
export class AggregatorFactory {
|
|
4048
|
-
static
|
|
4048
|
+
static TYPE_QNAME = "0x1::aggregator_factory::AggregatorFactory";
|
|
4049
4049
|
phantom_table: table.Table<Address, bigint>;
|
|
4050
4050
|
}
|
|
4051
4051
|
|
|
@@ -4059,7 +4059,7 @@ export namespace aggregator_factory {
|
|
|
4059
4059
|
|
|
4060
4060
|
export namespace governance_proposal {
|
|
4061
4061
|
export class GovernanceProposal {
|
|
4062
|
-
static
|
|
4062
|
+
static TYPE_QNAME = "0x1::governance_proposal::GovernanceProposal";
|
|
4063
4063
|
dummy_field: Boolean;
|
|
4064
4064
|
}
|
|
4065
4065
|
|
|
@@ -4073,13 +4073,13 @@ export namespace governance_proposal {
|
|
|
4073
4073
|
|
|
4074
4074
|
export namespace optional_aggregator {
|
|
4075
4075
|
export class Integer {
|
|
4076
|
-
static
|
|
4076
|
+
static TYPE_QNAME = "0x1::optional_aggregator::Integer";
|
|
4077
4077
|
value: bigint;
|
|
4078
4078
|
limit: bigint;
|
|
4079
4079
|
}
|
|
4080
4080
|
|
|
4081
4081
|
export class OptionalAggregator {
|
|
4082
|
-
static
|
|
4082
|
+
static TYPE_QNAME = "0x1::optional_aggregator::OptionalAggregator";
|
|
4083
4083
|
aggregator: option.Option<aggregator.Aggregator>;
|
|
4084
4084
|
integer: option.Option<optional_aggregator.Integer>;
|
|
4085
4085
|
}
|
|
@@ -4103,7 +4103,7 @@ export namespace transaction_context {
|
|
|
4103
4103
|
|
|
4104
4104
|
export namespace transaction_validation {
|
|
4105
4105
|
export class TransactionValidation {
|
|
4106
|
-
static
|
|
4106
|
+
static TYPE_QNAME = "0x1::transaction_validation::TransactionValidation";
|
|
4107
4107
|
module_addr: Address;
|
|
4108
4108
|
module_name: string;
|
|
4109
4109
|
script_prologue_name: string;
|