@typemove/aptos 1.2.3-rc.1 → 1.2.3-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/aptos-chain-adapter.d.ts.map +1 -1
- package/dist/cjs/aptos-chain-adapter.js +27 -15
- package/dist/cjs/aptos-chain-adapter.js.map +1 -1
- package/dist/cjs/builtin/0x1.d.ts +252 -0
- package/dist/cjs/builtin/0x1.d.ts.map +1 -1
- package/dist/cjs/builtin/0x1.js.map +1 -1
- package/dist/cjs/builtin/0x3.d.ts +40 -0
- package/dist/cjs/builtin/0x3.d.ts.map +1 -1
- package/dist/cjs/builtin/0x3.js.map +1 -1
- package/dist/esm/aptos-chain-adapter.d.ts.map +1 -1
- package/dist/esm/aptos-chain-adapter.js +27 -15
- package/dist/esm/aptos-chain-adapter.js.map +1 -1
- package/dist/esm/builtin/0x1.d.ts +252 -0
- package/dist/esm/builtin/0x1.d.ts.map +1 -1
- package/dist/esm/builtin/0x1.js.map +1 -1
- package/dist/esm/builtin/0x3.d.ts +40 -0
- package/dist/esm/builtin/0x3.d.ts.map +1 -1
- package/dist/esm/builtin/0x3.js.map +1 -1
- package/package.json +2 -2
- package/src/aptos-chain-adapter.ts +29 -15
- package/src/builtin/0x1.ts +346 -0
- package/src/builtin/0x3.ts +56 -0
- package/src/tests/types/0x48271d39d0b05bd6efca2278f22277d6fcc375504f9839fd73f74ace240861af.ts +12 -0
- package/src/tests/types/0x4dcae85fc5559071906cd5c76b7420fcbb4b0a92f00ab40ffc394aadbbff5ee9.ts +6 -0
- package/src/tests/types/0xbd35135844473187163ca197ca93b2ab014370587bb0ed3befff9e902d6bb541.ts +63 -0
package/src/builtin/0x1.ts
CHANGED
|
@@ -35,6 +35,11 @@ export namespace acl {
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
export interface ACLInstance extends TypedEventInstance<ACL> {
|
|
39
|
+
data_decoded: ACL;
|
|
40
|
+
type_arguments: [];
|
|
41
|
+
}
|
|
42
|
+
|
|
38
43
|
export namespace entry {}
|
|
39
44
|
export namespace view {}
|
|
40
45
|
}
|
|
@@ -55,6 +60,11 @@ export namespace any_ {
|
|
|
55
60
|
}
|
|
56
61
|
}
|
|
57
62
|
|
|
63
|
+
export interface AnyInstance extends TypedEventInstance<Any> {
|
|
64
|
+
data_decoded: Any;
|
|
65
|
+
type_arguments: [];
|
|
66
|
+
}
|
|
67
|
+
|
|
58
68
|
export namespace entry {}
|
|
59
69
|
export namespace view {}
|
|
60
70
|
}
|
|
@@ -97,6 +107,12 @@ export namespace code {
|
|
|
97
107
|
}
|
|
98
108
|
}
|
|
99
109
|
|
|
110
|
+
export interface ModuleMetadataInstance
|
|
111
|
+
extends TypedEventInstance<ModuleMetadata> {
|
|
112
|
+
data_decoded: ModuleMetadata;
|
|
113
|
+
type_arguments: [];
|
|
114
|
+
}
|
|
115
|
+
|
|
100
116
|
export interface PackageDep {
|
|
101
117
|
account: Address;
|
|
102
118
|
package_name: string;
|
|
@@ -112,6 +128,11 @@ export namespace code {
|
|
|
112
128
|
}
|
|
113
129
|
}
|
|
114
130
|
|
|
131
|
+
export interface PackageDepInstance extends TypedEventInstance<PackageDep> {
|
|
132
|
+
data_decoded: PackageDep;
|
|
133
|
+
type_arguments: [];
|
|
134
|
+
}
|
|
135
|
+
|
|
115
136
|
export interface PackageMetadata {
|
|
116
137
|
name: string;
|
|
117
138
|
upgrade_policy: code.UpgradePolicy;
|
|
@@ -135,6 +156,12 @@ export namespace code {
|
|
|
135
156
|
}
|
|
136
157
|
}
|
|
137
158
|
|
|
159
|
+
export interface PackageMetadataInstance
|
|
160
|
+
extends TypedEventInstance<PackageMetadata> {
|
|
161
|
+
data_decoded: PackageMetadata;
|
|
162
|
+
type_arguments: [];
|
|
163
|
+
}
|
|
164
|
+
|
|
138
165
|
export interface PackageRegistry {
|
|
139
166
|
packages: code.PackageMetadata[];
|
|
140
167
|
}
|
|
@@ -151,6 +178,12 @@ export namespace code {
|
|
|
151
178
|
}
|
|
152
179
|
}
|
|
153
180
|
|
|
181
|
+
export interface PackageRegistryInstance
|
|
182
|
+
extends TypedEventInstance<PackageRegistry> {
|
|
183
|
+
data_decoded: PackageRegistry;
|
|
184
|
+
type_arguments: [];
|
|
185
|
+
}
|
|
186
|
+
|
|
154
187
|
export interface UpgradePolicy {
|
|
155
188
|
policy: number;
|
|
156
189
|
}
|
|
@@ -165,6 +198,12 @@ export namespace code {
|
|
|
165
198
|
}
|
|
166
199
|
}
|
|
167
200
|
|
|
201
|
+
export interface UpgradePolicyInstance
|
|
202
|
+
extends TypedEventInstance<UpgradePolicy> {
|
|
203
|
+
data_decoded: UpgradePolicy;
|
|
204
|
+
type_arguments: [];
|
|
205
|
+
}
|
|
206
|
+
|
|
168
207
|
export namespace entry {
|
|
169
208
|
export async function publishPackageTxn(
|
|
170
209
|
client: AptosClient,
|
|
@@ -613,6 +652,11 @@ export namespace guid {
|
|
|
613
652
|
}
|
|
614
653
|
}
|
|
615
654
|
|
|
655
|
+
export interface GUIDInstance extends TypedEventInstance<GUID> {
|
|
656
|
+
data_decoded: GUID;
|
|
657
|
+
type_arguments: [];
|
|
658
|
+
}
|
|
659
|
+
|
|
616
660
|
export interface ID {
|
|
617
661
|
creation_num: bigint;
|
|
618
662
|
addr: Address;
|
|
@@ -628,6 +672,11 @@ export namespace guid {
|
|
|
628
672
|
}
|
|
629
673
|
}
|
|
630
674
|
|
|
675
|
+
export interface IDInstance extends TypedEventInstance<ID> {
|
|
676
|
+
data_decoded: ID;
|
|
677
|
+
type_arguments: [];
|
|
678
|
+
}
|
|
679
|
+
|
|
631
680
|
export namespace entry {}
|
|
632
681
|
export namespace view {}
|
|
633
682
|
}
|
|
@@ -899,6 +948,12 @@ export namespace stake {
|
|
|
899
948
|
}
|
|
900
949
|
}
|
|
901
950
|
|
|
951
|
+
export interface IndividualValidatorPerformanceInstance
|
|
952
|
+
extends TypedEventInstance<IndividualValidatorPerformance> {
|
|
953
|
+
data_decoded: IndividualValidatorPerformance;
|
|
954
|
+
type_arguments: [];
|
|
955
|
+
}
|
|
956
|
+
|
|
902
957
|
export interface JoinValidatorSetEvent {
|
|
903
958
|
pool_address: Address;
|
|
904
959
|
}
|
|
@@ -1153,6 +1208,12 @@ export namespace stake {
|
|
|
1153
1208
|
}
|
|
1154
1209
|
}
|
|
1155
1210
|
|
|
1211
|
+
export interface ValidatorConfigInstance
|
|
1212
|
+
extends TypedEventInstance<ValidatorConfig> {
|
|
1213
|
+
data_decoded: ValidatorConfig;
|
|
1214
|
+
type_arguments: [];
|
|
1215
|
+
}
|
|
1216
|
+
|
|
1156
1217
|
export interface ValidatorFees {
|
|
1157
1218
|
fees_table: table.Table<Address, coin.Coin<aptos_coin.AptosCoin>>;
|
|
1158
1219
|
}
|
|
@@ -1183,6 +1244,12 @@ export namespace stake {
|
|
|
1183
1244
|
}
|
|
1184
1245
|
}
|
|
1185
1246
|
|
|
1247
|
+
export interface ValidatorInfoInstance
|
|
1248
|
+
extends TypedEventInstance<ValidatorInfo> {
|
|
1249
|
+
data_decoded: ValidatorInfo;
|
|
1250
|
+
type_arguments: [];
|
|
1251
|
+
}
|
|
1252
|
+
|
|
1186
1253
|
export interface ValidatorPerformance {
|
|
1187
1254
|
validators: stake.IndividualValidatorPerformance[];
|
|
1188
1255
|
}
|
|
@@ -1763,6 +1830,11 @@ export namespace table {
|
|
|
1763
1830
|
}
|
|
1764
1831
|
}
|
|
1765
1832
|
|
|
1833
|
+
export interface BoxInstance extends TypedEventInstance<Box<any>> {
|
|
1834
|
+
data_decoded: Box<any>;
|
|
1835
|
+
type_arguments: [string];
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1766
1838
|
export interface Table<T0, T1> {
|
|
1767
1839
|
handle: Address;
|
|
1768
1840
|
}
|
|
@@ -1819,6 +1891,11 @@ export namespace object_ {
|
|
|
1819
1891
|
}
|
|
1820
1892
|
}
|
|
1821
1893
|
|
|
1894
|
+
export interface DeleteRefInstance extends TypedEventInstance<DeleteRef> {
|
|
1895
|
+
data_decoded: DeleteRef;
|
|
1896
|
+
type_arguments: [];
|
|
1897
|
+
}
|
|
1898
|
+
|
|
1822
1899
|
export interface DeriveRef {
|
|
1823
1900
|
self: Address;
|
|
1824
1901
|
}
|
|
@@ -1833,6 +1910,11 @@ export namespace object_ {
|
|
|
1833
1910
|
}
|
|
1834
1911
|
}
|
|
1835
1912
|
|
|
1913
|
+
export interface DeriveRefInstance extends TypedEventInstance<DeriveRef> {
|
|
1914
|
+
data_decoded: DeriveRef;
|
|
1915
|
+
type_arguments: [];
|
|
1916
|
+
}
|
|
1917
|
+
|
|
1836
1918
|
export interface ExtendRef {
|
|
1837
1919
|
self: Address;
|
|
1838
1920
|
}
|
|
@@ -1847,6 +1929,11 @@ export namespace object_ {
|
|
|
1847
1929
|
}
|
|
1848
1930
|
}
|
|
1849
1931
|
|
|
1932
|
+
export interface ExtendRefInstance extends TypedEventInstance<ExtendRef> {
|
|
1933
|
+
data_decoded: ExtendRef;
|
|
1934
|
+
type_arguments: [];
|
|
1935
|
+
}
|
|
1936
|
+
|
|
1850
1937
|
export interface LinearTransferRef {
|
|
1851
1938
|
self: Address;
|
|
1852
1939
|
owner: Address;
|
|
@@ -1880,6 +1967,11 @@ export namespace object_ {
|
|
|
1880
1967
|
}
|
|
1881
1968
|
}
|
|
1882
1969
|
|
|
1970
|
+
export interface ObjectInstance extends TypedEventInstance<Object<any>> {
|
|
1971
|
+
data_decoded: Object<any>;
|
|
1972
|
+
type_arguments: [string];
|
|
1973
|
+
}
|
|
1974
|
+
|
|
1883
1975
|
export interface ObjectCore {
|
|
1884
1976
|
guid_creation_num: bigint;
|
|
1885
1977
|
owner: Address;
|
|
@@ -1947,6 +2039,11 @@ export namespace object_ {
|
|
|
1947
2039
|
}
|
|
1948
2040
|
}
|
|
1949
2041
|
|
|
2042
|
+
export interface TransferRefInstance extends TypedEventInstance<TransferRef> {
|
|
2043
|
+
data_decoded: TransferRef;
|
|
2044
|
+
type_arguments: [];
|
|
2045
|
+
}
|
|
2046
|
+
|
|
1950
2047
|
export namespace entry {
|
|
1951
2048
|
export async function transfer<T0 = any>(
|
|
1952
2049
|
client: AptosClient,
|
|
@@ -2036,6 +2133,11 @@ export namespace option {
|
|
|
2036
2133
|
}
|
|
2037
2134
|
}
|
|
2038
2135
|
|
|
2136
|
+
export interface OptionInstance extends TypedEventInstance<Option<any>> {
|
|
2137
|
+
data_decoded: Option<any>;
|
|
2138
|
+
type_arguments: [string];
|
|
2139
|
+
}
|
|
2140
|
+
|
|
2039
2141
|
export namespace entry {}
|
|
2040
2142
|
export namespace view {}
|
|
2041
2143
|
}
|
|
@@ -2060,6 +2162,11 @@ export namespace string_ {
|
|
|
2060
2162
|
}
|
|
2061
2163
|
}
|
|
2062
2164
|
|
|
2165
|
+
export interface StringInstance extends TypedEventInstance<String> {
|
|
2166
|
+
data_decoded: String;
|
|
2167
|
+
type_arguments: [];
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2063
2170
|
export namespace entry {}
|
|
2064
2171
|
export namespace view {}
|
|
2065
2172
|
}
|
|
@@ -2560,6 +2667,12 @@ export namespace account {
|
|
|
2560
2667
|
}
|
|
2561
2668
|
}
|
|
2562
2669
|
|
|
2670
|
+
export interface RotationCapabilityInstance
|
|
2671
|
+
extends TypedEventInstance<RotationCapability> {
|
|
2672
|
+
data_decoded: RotationCapability;
|
|
2673
|
+
type_arguments: [];
|
|
2674
|
+
}
|
|
2675
|
+
|
|
2563
2676
|
export interface RotationCapabilityOfferProofChallenge {
|
|
2564
2677
|
sequence_number: bigint;
|
|
2565
2678
|
recipient_address: Address;
|
|
@@ -2633,6 +2746,12 @@ export namespace account {
|
|
|
2633
2746
|
}
|
|
2634
2747
|
}
|
|
2635
2748
|
|
|
2749
|
+
export interface SignerCapabilityInstance
|
|
2750
|
+
extends TypedEventInstance<SignerCapability> {
|
|
2751
|
+
data_decoded: SignerCapability;
|
|
2752
|
+
type_arguments: [];
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2636
2755
|
export interface SignerCapabilityOfferProofChallenge {
|
|
2637
2756
|
sequence_number: bigint;
|
|
2638
2757
|
recipient_address: Address;
|
|
@@ -2983,6 +3102,11 @@ export namespace ed25519 {
|
|
|
2983
3102
|
}
|
|
2984
3103
|
}
|
|
2985
3104
|
|
|
3105
|
+
export interface SignatureInstance extends TypedEventInstance<Signature> {
|
|
3106
|
+
data_decoded: Signature;
|
|
3107
|
+
type_arguments: [];
|
|
3108
|
+
}
|
|
3109
|
+
|
|
2986
3110
|
export interface SignedMessage<T0> {
|
|
2987
3111
|
type_info: type_info.TypeInfo;
|
|
2988
3112
|
inner: T0;
|
|
@@ -3018,6 +3142,12 @@ export namespace ed25519 {
|
|
|
3018
3142
|
}
|
|
3019
3143
|
}
|
|
3020
3144
|
|
|
3145
|
+
export interface UnvalidatedPublicKeyInstance
|
|
3146
|
+
extends TypedEventInstance<UnvalidatedPublicKey> {
|
|
3147
|
+
data_decoded: UnvalidatedPublicKey;
|
|
3148
|
+
type_arguments: [];
|
|
3149
|
+
}
|
|
3150
|
+
|
|
3021
3151
|
export interface ValidatedPublicKey {
|
|
3022
3152
|
bytes: string;
|
|
3023
3153
|
}
|
|
@@ -3034,6 +3164,12 @@ export namespace ed25519 {
|
|
|
3034
3164
|
}
|
|
3035
3165
|
}
|
|
3036
3166
|
|
|
3167
|
+
export interface ValidatedPublicKeyInstance
|
|
3168
|
+
extends TypedEventInstance<ValidatedPublicKey> {
|
|
3169
|
+
data_decoded: ValidatedPublicKey;
|
|
3170
|
+
type_arguments: [];
|
|
3171
|
+
}
|
|
3172
|
+
|
|
3037
3173
|
export namespace entry {}
|
|
3038
3174
|
export namespace view {}
|
|
3039
3175
|
}
|
|
@@ -3534,6 +3670,12 @@ export namespace vesting {
|
|
|
3534
3670
|
}
|
|
3535
3671
|
}
|
|
3536
3672
|
|
|
3673
|
+
export interface VestingScheduleInstance
|
|
3674
|
+
extends TypedEventInstance<VestingSchedule> {
|
|
3675
|
+
data_decoded: VestingSchedule;
|
|
3676
|
+
type_arguments: [];
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3537
3679
|
export namespace entry {
|
|
3538
3680
|
export async function adminWithdraw(
|
|
3539
3681
|
client: AptosClient,
|
|
@@ -4172,6 +4314,12 @@ export namespace bls12381 {
|
|
|
4172
4314
|
}
|
|
4173
4315
|
}
|
|
4174
4316
|
|
|
4317
|
+
export interface AggrOrMultiSignatureInstance
|
|
4318
|
+
extends TypedEventInstance<AggrOrMultiSignature> {
|
|
4319
|
+
data_decoded: AggrOrMultiSignature;
|
|
4320
|
+
type_arguments: [];
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4175
4323
|
export interface AggrPublicKeysWithPoP {
|
|
4176
4324
|
bytes: string;
|
|
4177
4325
|
}
|
|
@@ -4188,6 +4336,12 @@ export namespace bls12381 {
|
|
|
4188
4336
|
}
|
|
4189
4337
|
}
|
|
4190
4338
|
|
|
4339
|
+
export interface AggrPublicKeysWithPoPInstance
|
|
4340
|
+
extends TypedEventInstance<AggrPublicKeysWithPoP> {
|
|
4341
|
+
data_decoded: AggrPublicKeysWithPoP;
|
|
4342
|
+
type_arguments: [];
|
|
4343
|
+
}
|
|
4344
|
+
|
|
4191
4345
|
export interface ProofOfPossession {
|
|
4192
4346
|
bytes: string;
|
|
4193
4347
|
}
|
|
@@ -4204,6 +4358,12 @@ export namespace bls12381 {
|
|
|
4204
4358
|
}
|
|
4205
4359
|
}
|
|
4206
4360
|
|
|
4361
|
+
export interface ProofOfPossessionInstance
|
|
4362
|
+
extends TypedEventInstance<ProofOfPossession> {
|
|
4363
|
+
data_decoded: ProofOfPossession;
|
|
4364
|
+
type_arguments: [];
|
|
4365
|
+
}
|
|
4366
|
+
|
|
4207
4367
|
export interface PublicKey {
|
|
4208
4368
|
bytes: string;
|
|
4209
4369
|
}
|
|
@@ -4218,6 +4378,11 @@ export namespace bls12381 {
|
|
|
4218
4378
|
}
|
|
4219
4379
|
}
|
|
4220
4380
|
|
|
4381
|
+
export interface PublicKeyInstance extends TypedEventInstance<PublicKey> {
|
|
4382
|
+
data_decoded: PublicKey;
|
|
4383
|
+
type_arguments: [];
|
|
4384
|
+
}
|
|
4385
|
+
|
|
4221
4386
|
export interface PublicKeyWithPoP {
|
|
4222
4387
|
bytes: string;
|
|
4223
4388
|
}
|
|
@@ -4234,6 +4399,12 @@ export namespace bls12381 {
|
|
|
4234
4399
|
}
|
|
4235
4400
|
}
|
|
4236
4401
|
|
|
4402
|
+
export interface PublicKeyWithPoPInstance
|
|
4403
|
+
extends TypedEventInstance<PublicKeyWithPoP> {
|
|
4404
|
+
data_decoded: PublicKeyWithPoP;
|
|
4405
|
+
type_arguments: [];
|
|
4406
|
+
}
|
|
4407
|
+
|
|
4237
4408
|
export interface Signature {
|
|
4238
4409
|
bytes: string;
|
|
4239
4410
|
}
|
|
@@ -4248,6 +4419,11 @@ export namespace bls12381 {
|
|
|
4248
4419
|
}
|
|
4249
4420
|
}
|
|
4250
4421
|
|
|
4422
|
+
export interface SignatureInstance extends TypedEventInstance<Signature> {
|
|
4423
|
+
data_decoded: Signature;
|
|
4424
|
+
type_arguments: [];
|
|
4425
|
+
}
|
|
4426
|
+
|
|
4251
4427
|
export namespace entry {}
|
|
4252
4428
|
export namespace view {}
|
|
4253
4429
|
}
|
|
@@ -4352,6 +4528,12 @@ export namespace secp256k1 {
|
|
|
4352
4528
|
}
|
|
4353
4529
|
}
|
|
4354
4530
|
|
|
4531
|
+
export interface ECDSARawPublicKeyInstance
|
|
4532
|
+
extends TypedEventInstance<ECDSARawPublicKey> {
|
|
4533
|
+
data_decoded: ECDSARawPublicKey;
|
|
4534
|
+
type_arguments: [];
|
|
4535
|
+
}
|
|
4536
|
+
|
|
4355
4537
|
export interface ECDSASignature {
|
|
4356
4538
|
bytes: string;
|
|
4357
4539
|
}
|
|
@@ -4366,6 +4548,12 @@ export namespace secp256k1 {
|
|
|
4366
4548
|
}
|
|
4367
4549
|
}
|
|
4368
4550
|
|
|
4551
|
+
export interface ECDSASignatureInstance
|
|
4552
|
+
extends TypedEventInstance<ECDSASignature> {
|
|
4553
|
+
data_decoded: ECDSASignature;
|
|
4554
|
+
type_arguments: [];
|
|
4555
|
+
}
|
|
4556
|
+
|
|
4369
4557
|
export namespace entry {}
|
|
4370
4558
|
export namespace view {}
|
|
4371
4559
|
}
|
|
@@ -4441,6 +4629,11 @@ export namespace type_info {
|
|
|
4441
4629
|
}
|
|
4442
4630
|
}
|
|
4443
4631
|
|
|
4632
|
+
export interface TypeInfoInstance extends TypedEventInstance<TypeInfo> {
|
|
4633
|
+
data_decoded: TypeInfo;
|
|
4634
|
+
type_arguments: [];
|
|
4635
|
+
}
|
|
4636
|
+
|
|
4444
4637
|
export namespace entry {}
|
|
4445
4638
|
export namespace view {}
|
|
4446
4639
|
}
|
|
@@ -4642,6 +4835,11 @@ export namespace bit_vector {
|
|
|
4642
4835
|
}
|
|
4643
4836
|
}
|
|
4644
4837
|
|
|
4838
|
+
export interface BitVectorInstance extends TypedEventInstance<BitVector> {
|
|
4839
|
+
data_decoded: BitVector;
|
|
4840
|
+
type_arguments: [];
|
|
4841
|
+
}
|
|
4842
|
+
|
|
4645
4843
|
export namespace entry {}
|
|
4646
4844
|
export namespace view {}
|
|
4647
4845
|
}
|
|
@@ -4760,6 +4958,12 @@ export namespace simple_map {
|
|
|
4760
4958
|
}
|
|
4761
4959
|
}
|
|
4762
4960
|
|
|
4961
|
+
export interface ElementInstance
|
|
4962
|
+
extends TypedEventInstance<Element<any, any>> {
|
|
4963
|
+
data_decoded: Element<any, any>;
|
|
4964
|
+
type_arguments: [string, string];
|
|
4965
|
+
}
|
|
4966
|
+
|
|
4763
4967
|
export interface SimpleMap<T0, T1> {
|
|
4764
4968
|
data: simple_map.Element<T0, T1>[];
|
|
4765
4969
|
}
|
|
@@ -4777,6 +4981,12 @@ export namespace simple_map {
|
|
|
4777
4981
|
}
|
|
4778
4982
|
}
|
|
4779
4983
|
|
|
4984
|
+
export interface SimpleMapInstance
|
|
4985
|
+
extends TypedEventInstance<SimpleMap<any, any>> {
|
|
4986
|
+
data_decoded: SimpleMap<any, any>;
|
|
4987
|
+
type_arguments: [string, string];
|
|
4988
|
+
}
|
|
4989
|
+
|
|
4780
4990
|
export namespace entry {}
|
|
4781
4991
|
export namespace view {}
|
|
4782
4992
|
}
|
|
@@ -4801,6 +5011,11 @@ export namespace smart_table {
|
|
|
4801
5011
|
}
|
|
4802
5012
|
}
|
|
4803
5013
|
|
|
5014
|
+
export interface EntryInstance extends TypedEventInstance<Entry<any, any>> {
|
|
5015
|
+
data_decoded: Entry<any, any>;
|
|
5016
|
+
type_arguments: [string, string];
|
|
5017
|
+
}
|
|
5018
|
+
|
|
4804
5019
|
export interface SmartTable<T0, T1> {
|
|
4805
5020
|
buckets: table_with_length.TableWithLength<
|
|
4806
5021
|
bigint,
|
|
@@ -4849,6 +5064,11 @@ export namespace storage_gas {
|
|
|
4849
5064
|
}
|
|
4850
5065
|
}
|
|
4851
5066
|
|
|
5067
|
+
export interface GasCurveInstance extends TypedEventInstance<GasCurve> {
|
|
5068
|
+
data_decoded: GasCurve;
|
|
5069
|
+
type_arguments: [];
|
|
5070
|
+
}
|
|
5071
|
+
|
|
4852
5072
|
export interface Point {
|
|
4853
5073
|
x: bigint;
|
|
4854
5074
|
y: bigint;
|
|
@@ -4864,6 +5084,11 @@ export namespace storage_gas {
|
|
|
4864
5084
|
}
|
|
4865
5085
|
}
|
|
4866
5086
|
|
|
5087
|
+
export interface PointInstance extends TypedEventInstance<Point> {
|
|
5088
|
+
data_decoded: Point;
|
|
5089
|
+
type_arguments: [];
|
|
5090
|
+
}
|
|
5091
|
+
|
|
4867
5092
|
export interface StorageGas {
|
|
4868
5093
|
per_item_read: bigint;
|
|
4869
5094
|
per_item_create: bigint;
|
|
@@ -4917,6 +5142,12 @@ export namespace storage_gas {
|
|
|
4917
5142
|
}
|
|
4918
5143
|
}
|
|
4919
5144
|
|
|
5145
|
+
export interface UsageGasConfigInstance
|
|
5146
|
+
extends TypedEventInstance<UsageGasConfig> {
|
|
5147
|
+
data_decoded: UsageGasConfig;
|
|
5148
|
+
type_arguments: [];
|
|
5149
|
+
}
|
|
5150
|
+
|
|
4920
5151
|
export namespace entry {}
|
|
4921
5152
|
export namespace view {}
|
|
4922
5153
|
}
|
|
@@ -4991,6 +5222,11 @@ export namespace copyable_any {
|
|
|
4991
5222
|
}
|
|
4992
5223
|
}
|
|
4993
5224
|
|
|
5225
|
+
export interface AnyInstance extends TypedEventInstance<Any> {
|
|
5226
|
+
data_decoded: Any;
|
|
5227
|
+
type_arguments: [];
|
|
5228
|
+
}
|
|
5229
|
+
|
|
4994
5230
|
export namespace entry {}
|
|
4995
5231
|
export namespace view {}
|
|
4996
5232
|
}
|
|
@@ -5011,6 +5247,11 @@ export namespace gas_schedule {
|
|
|
5011
5247
|
}
|
|
5012
5248
|
}
|
|
5013
5249
|
|
|
5250
|
+
export interface GasEntryInstance extends TypedEventInstance<GasEntry> {
|
|
5251
|
+
data_decoded: GasEntry;
|
|
5252
|
+
type_arguments: [];
|
|
5253
|
+
}
|
|
5254
|
+
|
|
5014
5255
|
export interface GasSchedule {
|
|
5015
5256
|
entries: gas_schedule.GasEntry[];
|
|
5016
5257
|
}
|
|
@@ -5178,6 +5419,12 @@ export namespace ristretto255 {
|
|
|
5178
5419
|
}
|
|
5179
5420
|
}
|
|
5180
5421
|
|
|
5422
|
+
export interface CompressedRistrettoInstance
|
|
5423
|
+
extends TypedEventInstance<CompressedRistretto> {
|
|
5424
|
+
data_decoded: CompressedRistretto;
|
|
5425
|
+
type_arguments: [];
|
|
5426
|
+
}
|
|
5427
|
+
|
|
5181
5428
|
export interface RistrettoPoint {
|
|
5182
5429
|
handle: bigint;
|
|
5183
5430
|
}
|
|
@@ -5206,6 +5453,11 @@ export namespace ristretto255 {
|
|
|
5206
5453
|
}
|
|
5207
5454
|
}
|
|
5208
5455
|
|
|
5456
|
+
export interface ScalarInstance extends TypedEventInstance<Scalar> {
|
|
5457
|
+
data_decoded: Scalar;
|
|
5458
|
+
type_arguments: [];
|
|
5459
|
+
}
|
|
5460
|
+
|
|
5209
5461
|
export namespace entry {}
|
|
5210
5462
|
export namespace view {}
|
|
5211
5463
|
}
|
|
@@ -5253,6 +5505,11 @@ export namespace string_utils {
|
|
|
5253
5505
|
}
|
|
5254
5506
|
}
|
|
5255
5507
|
|
|
5508
|
+
export interface ConsInstance extends TypedEventInstance<Cons<any, any>> {
|
|
5509
|
+
data_decoded: Cons<any, any>;
|
|
5510
|
+
type_arguments: [string, string];
|
|
5511
|
+
}
|
|
5512
|
+
|
|
5256
5513
|
export interface FakeCons<T0, T1> {
|
|
5257
5514
|
car: T0;
|
|
5258
5515
|
cdr: T1;
|
|
@@ -5271,6 +5528,12 @@ export namespace string_utils {
|
|
|
5271
5528
|
}
|
|
5272
5529
|
}
|
|
5273
5530
|
|
|
5531
|
+
export interface FakeConsInstance
|
|
5532
|
+
extends TypedEventInstance<FakeCons<any, any>> {
|
|
5533
|
+
data_decoded: FakeCons<any, any>;
|
|
5534
|
+
type_arguments: [string, string];
|
|
5535
|
+
}
|
|
5536
|
+
|
|
5274
5537
|
export interface NIL {
|
|
5275
5538
|
dummy_field: Boolean;
|
|
5276
5539
|
}
|
|
@@ -5285,6 +5548,11 @@ export namespace string_utils {
|
|
|
5285
5548
|
}
|
|
5286
5549
|
}
|
|
5287
5550
|
|
|
5551
|
+
export interface NILInstance extends TypedEventInstance<NIL> {
|
|
5552
|
+
data_decoded: NIL;
|
|
5553
|
+
type_arguments: [];
|
|
5554
|
+
}
|
|
5555
|
+
|
|
5288
5556
|
export namespace entry {}
|
|
5289
5557
|
export namespace view {}
|
|
5290
5558
|
}
|
|
@@ -5509,6 +5777,12 @@ export namespace fixed_point32 {
|
|
|
5509
5777
|
}
|
|
5510
5778
|
}
|
|
5511
5779
|
|
|
5780
|
+
export interface FixedPoint32Instance
|
|
5781
|
+
extends TypedEventInstance<FixedPoint32> {
|
|
5782
|
+
data_decoded: FixedPoint32;
|
|
5783
|
+
type_arguments: [];
|
|
5784
|
+
}
|
|
5785
|
+
|
|
5512
5786
|
export namespace entry {}
|
|
5513
5787
|
export namespace view {}
|
|
5514
5788
|
}
|
|
@@ -5528,6 +5802,12 @@ export namespace fixed_point64 {
|
|
|
5528
5802
|
}
|
|
5529
5803
|
}
|
|
5530
5804
|
|
|
5805
|
+
export interface FixedPoint64Instance
|
|
5806
|
+
extends TypedEventInstance<FixedPoint64> {
|
|
5807
|
+
data_decoded: FixedPoint64;
|
|
5808
|
+
type_arguments: [];
|
|
5809
|
+
}
|
|
5810
|
+
|
|
5531
5811
|
export namespace entry {}
|
|
5532
5812
|
export namespace view {}
|
|
5533
5813
|
}
|
|
@@ -5547,6 +5827,11 @@ export namespace multi_ed25519 {
|
|
|
5547
5827
|
}
|
|
5548
5828
|
}
|
|
5549
5829
|
|
|
5830
|
+
export interface SignatureInstance extends TypedEventInstance<Signature> {
|
|
5831
|
+
data_decoded: Signature;
|
|
5832
|
+
type_arguments: [];
|
|
5833
|
+
}
|
|
5834
|
+
|
|
5550
5835
|
export interface UnvalidatedPublicKey {
|
|
5551
5836
|
bytes: string;
|
|
5552
5837
|
}
|
|
@@ -5563,6 +5848,12 @@ export namespace multi_ed25519 {
|
|
|
5563
5848
|
}
|
|
5564
5849
|
}
|
|
5565
5850
|
|
|
5851
|
+
export interface UnvalidatedPublicKeyInstance
|
|
5852
|
+
extends TypedEventInstance<UnvalidatedPublicKey> {
|
|
5853
|
+
data_decoded: UnvalidatedPublicKey;
|
|
5854
|
+
type_arguments: [];
|
|
5855
|
+
}
|
|
5856
|
+
|
|
5566
5857
|
export interface ValidatedPublicKey {
|
|
5567
5858
|
bytes: string;
|
|
5568
5859
|
}
|
|
@@ -5579,6 +5870,12 @@ export namespace multi_ed25519 {
|
|
|
5579
5870
|
}
|
|
5580
5871
|
}
|
|
5581
5872
|
|
|
5873
|
+
export interface ValidatedPublicKeyInstance
|
|
5874
|
+
extends TypedEventInstance<ValidatedPublicKey> {
|
|
5875
|
+
data_decoded: ValidatedPublicKey;
|
|
5876
|
+
type_arguments: [];
|
|
5877
|
+
}
|
|
5878
|
+
|
|
5582
5879
|
export namespace entry {}
|
|
5583
5880
|
export namespace view {}
|
|
5584
5881
|
}
|
|
@@ -5812,6 +6109,11 @@ export namespace state_storage {
|
|
|
5812
6109
|
}
|
|
5813
6110
|
}
|
|
5814
6111
|
|
|
6112
|
+
export interface UsageInstance extends TypedEventInstance<Usage> {
|
|
6113
|
+
data_decoded: Usage;
|
|
6114
|
+
type_arguments: [];
|
|
6115
|
+
}
|
|
6116
|
+
|
|
5815
6117
|
export namespace entry {}
|
|
5816
6118
|
export namespace view {}
|
|
5817
6119
|
}
|
|
@@ -5852,6 +6154,11 @@ export namespace fungible_asset {
|
|
|
5852
6154
|
}
|
|
5853
6155
|
}
|
|
5854
6156
|
|
|
6157
|
+
export interface BurnRefInstance extends TypedEventInstance<BurnRef> {
|
|
6158
|
+
data_decoded: BurnRef;
|
|
6159
|
+
type_arguments: [];
|
|
6160
|
+
}
|
|
6161
|
+
|
|
5855
6162
|
export interface DepositEvent {
|
|
5856
6163
|
amount: bigint;
|
|
5857
6164
|
}
|
|
@@ -5972,6 +6279,11 @@ export namespace fungible_asset {
|
|
|
5972
6279
|
}
|
|
5973
6280
|
}
|
|
5974
6281
|
|
|
6282
|
+
export interface MintRefInstance extends TypedEventInstance<MintRef> {
|
|
6283
|
+
data_decoded: MintRef;
|
|
6284
|
+
type_arguments: [];
|
|
6285
|
+
}
|
|
6286
|
+
|
|
5975
6287
|
export interface Supply {
|
|
5976
6288
|
current: bigint;
|
|
5977
6289
|
maximum: option.Option<bigint>;
|
|
@@ -6001,6 +6313,11 @@ export namespace fungible_asset {
|
|
|
6001
6313
|
}
|
|
6002
6314
|
}
|
|
6003
6315
|
|
|
6316
|
+
export interface TransferRefInstance extends TypedEventInstance<TransferRef> {
|
|
6317
|
+
data_decoded: TransferRef;
|
|
6318
|
+
type_arguments: [];
|
|
6319
|
+
}
|
|
6320
|
+
|
|
6004
6321
|
export interface WithdrawEvent {
|
|
6005
6322
|
amount: bigint;
|
|
6006
6323
|
}
|
|
@@ -6377,6 +6694,12 @@ export namespace delegation_pool {
|
|
|
6377
6694
|
}
|
|
6378
6695
|
}
|
|
6379
6696
|
|
|
6697
|
+
export interface ObservedLockupCycleInstance
|
|
6698
|
+
extends TypedEventInstance<ObservedLockupCycle> {
|
|
6699
|
+
data_decoded: ObservedLockupCycle;
|
|
6700
|
+
type_arguments: [];
|
|
6701
|
+
}
|
|
6702
|
+
|
|
6380
6703
|
export interface ReactivateStakeEvent {
|
|
6381
6704
|
pool_address: Address;
|
|
6382
6705
|
delegator_address: Address;
|
|
@@ -7051,6 +7374,11 @@ export namespace aptos_governance {
|
|
|
7051
7374
|
}
|
|
7052
7375
|
}
|
|
7053
7376
|
|
|
7377
|
+
export interface RecordKeyInstance extends TypedEventInstance<RecordKey> {
|
|
7378
|
+
data_decoded: RecordKey;
|
|
7379
|
+
type_arguments: [];
|
|
7380
|
+
}
|
|
7381
|
+
|
|
7054
7382
|
export interface UpdateConfigEvent {
|
|
7055
7383
|
min_voting_threshold: bigint;
|
|
7056
7384
|
required_proposer_stake: bigint;
|
|
@@ -7612,6 +7940,12 @@ export namespace multisig_account {
|
|
|
7612
7940
|
}
|
|
7613
7941
|
}
|
|
7614
7942
|
|
|
7943
|
+
export interface ExecutionErrorInstance
|
|
7944
|
+
extends TypedEventInstance<ExecutionError> {
|
|
7945
|
+
data_decoded: ExecutionError;
|
|
7946
|
+
type_arguments: [];
|
|
7947
|
+
}
|
|
7948
|
+
|
|
7615
7949
|
export interface MetadataUpdatedEvent {
|
|
7616
7950
|
old_metadata: simple_map.SimpleMap<string, string>;
|
|
7617
7951
|
new_metadata: simple_map.SimpleMap<string, string>;
|
|
@@ -7707,6 +8041,12 @@ export namespace multisig_account {
|
|
|
7707
8041
|
}
|
|
7708
8042
|
}
|
|
7709
8043
|
|
|
8044
|
+
export interface MultisigTransactionInstance
|
|
8045
|
+
extends TypedEventInstance<MultisigTransaction> {
|
|
8046
|
+
data_decoded: MultisigTransaction;
|
|
8047
|
+
type_arguments: [];
|
|
8048
|
+
}
|
|
8049
|
+
|
|
7710
8050
|
export interface RemoveOwnersEvent {
|
|
7711
8051
|
owners_removed: Address[];
|
|
7712
8052
|
}
|
|
@@ -9271,6 +9611,12 @@ export namespace governance_proposal {
|
|
|
9271
9611
|
}
|
|
9272
9612
|
}
|
|
9273
9613
|
|
|
9614
|
+
export interface GovernanceProposalInstance
|
|
9615
|
+
extends TypedEventInstance<GovernanceProposal> {
|
|
9616
|
+
data_decoded: GovernanceProposal;
|
|
9617
|
+
type_arguments: [];
|
|
9618
|
+
}
|
|
9619
|
+
|
|
9274
9620
|
export namespace entry {}
|
|
9275
9621
|
export namespace view {}
|
|
9276
9622
|
}
|