@sentio/sdk 1.21.2 → 1.21.4
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/aptos-processor.js +6 -2
- package/lib/aptos/aptos-processor.js.map +1 -1
- package/lib/aptos/types.d.ts +3 -1
- package/lib/aptos/types.js +9 -3
- package/lib/aptos/types.js.map +1 -1
- package/lib/aptos-codegen/codegen.js +27 -24
- package/lib/aptos-codegen/codegen.js.map +1 -1
- package/lib/aptos-codegen/typegen.js.map +1 -1
- package/lib/builtin/aptos/0x1.d.ts +128 -16
- package/lib/builtin/aptos/0x1.js.map +1 -1
- package/lib/builtin/aptos/0x3.d.ts +27 -2
- package/lib/builtin/aptos/0x3.js.map +1 -1
- package/lib/core/context.js +1 -0
- package/lib/core/context.js.map +1 -1
- package/lib/tests/aptos.test.js +1 -1
- package/lib/tests/aptos.test.js.map +1 -1
- package/lib/tests/souffl3.js.map +1 -1
- package/lib/tests/types/aptos/souffle.d.ts +50 -32
- package/lib/tests/types/aptos/souffle.js.map +1 -1
- package/package.json +1 -1
- package/src/aptos/aptos-processor.ts +7 -2
- package/src/aptos/types.ts +12 -3
- package/src/aptos-codegen/codegen.ts +28 -25
- package/src/aptos-codegen/typegen.test.ts +5 -2
- package/src/aptos-codegen/typegen.ts +1 -1
- package/src/builtin/aptos/0x1.ts +136 -34
- package/src/builtin/aptos/0x3.ts +28 -3
- package/src/core/context.ts +1 -0
- package/src/tests/aptos.test.ts +1 -1
- package/src/tests/souffl3.ts +2 -2
- package/src/tests/types/aptos/souffle.ts +66 -51
package/src/builtin/aptos/0x1.ts
CHANGED
@@ -115,6 +115,7 @@ export namespace code {
|
|
115
115
|
export interface PublishPackageTxnPayload
|
116
116
|
extends aptos.TypedEntryFunctionPayload<[string, string[]]> {
|
117
117
|
arguments_typed: [string, string[]];
|
118
|
+
type_arguments: [];
|
118
119
|
}
|
119
120
|
|
120
121
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -138,11 +139,8 @@ export class coin extends aptos.AptosBaseProcessor {
|
|
138
139
|
return new coin({ ...coin.DEFAULT_OPTIONS, ...options });
|
139
140
|
}
|
140
141
|
|
141
|
-
onEntryFreezeCoinStore
|
142
|
-
func: (
|
143
|
-
call: coin.FreezeCoinStorePayload<T0>,
|
144
|
-
ctx: aptos.AptosContext
|
145
|
-
) => void,
|
142
|
+
onEntryFreezeCoinStore(
|
143
|
+
func: (call: coin.FreezeCoinStorePayload, ctx: aptos.AptosContext) => void,
|
146
144
|
filter?: aptos.CallFilter
|
147
145
|
): coin {
|
148
146
|
this.onEntryFunctionCall(func, {
|
@@ -152,8 +150,8 @@ export class coin extends aptos.AptosBaseProcessor {
|
|
152
150
|
return this;
|
153
151
|
}
|
154
152
|
|
155
|
-
onEntryTransfer
|
156
|
-
func: (call: coin.TransferPayload
|
153
|
+
onEntryTransfer(
|
154
|
+
func: (call: coin.TransferPayload, ctx: aptos.AptosContext) => void,
|
157
155
|
filter?: aptos.CallFilter
|
158
156
|
): coin {
|
159
157
|
this.onEntryFunctionCall(func, {
|
@@ -163,9 +161,9 @@ export class coin extends aptos.AptosBaseProcessor {
|
|
163
161
|
return this;
|
164
162
|
}
|
165
163
|
|
166
|
-
onEntryUnfreezeCoinStore
|
164
|
+
onEntryUnfreezeCoinStore(
|
167
165
|
func: (
|
168
|
-
call: coin.UnfreezeCoinStorePayload
|
166
|
+
call: coin.UnfreezeCoinStorePayload,
|
169
167
|
ctx: aptos.AptosContext
|
170
168
|
) => void,
|
171
169
|
filter?: aptos.CallFilter
|
@@ -177,11 +175,8 @@ export class coin extends aptos.AptosBaseProcessor {
|
|
177
175
|
return this;
|
178
176
|
}
|
179
177
|
|
180
|
-
onEntryUpgradeSupply
|
181
|
-
func: (
|
182
|
-
call: coin.UpgradeSupplyPayload<T0>,
|
183
|
-
ctx: aptos.AptosContext
|
184
|
-
) => void,
|
178
|
+
onEntryUpgradeSupply(
|
179
|
+
func: (call: coin.UpgradeSupplyPayload, ctx: aptos.AptosContext) => void,
|
185
180
|
filter?: aptos.CallFilter
|
186
181
|
): coin {
|
187
182
|
this.onEntryFunctionCall(func, {
|
@@ -244,6 +239,7 @@ export namespace coin {
|
|
244
239
|
export interface DepositEventInstance
|
245
240
|
extends aptos.TypedEventInstance<DepositEvent> {
|
246
241
|
data_typed: DepositEvent;
|
242
|
+
type_arguments: [];
|
247
243
|
}
|
248
244
|
|
249
245
|
export class FreezeCapability<T0> {
|
@@ -265,26 +261,31 @@ export namespace coin {
|
|
265
261
|
export interface WithdrawEventInstance
|
266
262
|
extends aptos.TypedEventInstance<WithdrawEvent> {
|
267
263
|
data_typed: WithdrawEvent;
|
264
|
+
type_arguments: [];
|
268
265
|
}
|
269
266
|
|
270
|
-
export interface FreezeCoinStorePayload
|
267
|
+
export interface FreezeCoinStorePayload
|
271
268
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
272
269
|
arguments_typed: [Address];
|
270
|
+
type_arguments: [string];
|
273
271
|
}
|
274
272
|
|
275
|
-
export interface TransferPayload
|
273
|
+
export interface TransferPayload
|
276
274
|
extends aptos.TypedEntryFunctionPayload<[Address, bigint]> {
|
277
275
|
arguments_typed: [Address, bigint];
|
276
|
+
type_arguments: [string];
|
278
277
|
}
|
279
278
|
|
280
|
-
export interface UnfreezeCoinStorePayload
|
279
|
+
export interface UnfreezeCoinStorePayload
|
281
280
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
282
281
|
arguments_typed: [Address];
|
282
|
+
type_arguments: [string];
|
283
283
|
}
|
284
284
|
|
285
|
-
export interface UpgradeSupplyPayload
|
285
|
+
export interface UpgradeSupplyPayload
|
286
286
|
extends aptos.TypedEntryFunctionPayload<[]> {
|
287
287
|
arguments_typed: [];
|
288
|
+
type_arguments: [string];
|
288
289
|
}
|
289
290
|
|
290
291
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -392,6 +393,7 @@ export namespace block {
|
|
392
393
|
export interface NewBlockEventInstance
|
393
394
|
extends aptos.TypedEventInstance<NewBlockEvent> {
|
394
395
|
data_typed: NewBlockEvent;
|
396
|
+
type_arguments: [];
|
395
397
|
}
|
396
398
|
|
397
399
|
export class UpdateEpochIntervalEvent {
|
@@ -402,6 +404,7 @@ export namespace block {
|
|
402
404
|
export interface UpdateEpochIntervalEventInstance
|
403
405
|
extends aptos.TypedEventInstance<UpdateEpochIntervalEvent> {
|
404
406
|
data_typed: UpdateEpochIntervalEvent;
|
407
|
+
type_arguments: [];
|
405
408
|
}
|
406
409
|
|
407
410
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -776,6 +779,7 @@ export namespace stake {
|
|
776
779
|
export interface AddStakeEventInstance
|
777
780
|
extends aptos.TypedEventInstance<AddStakeEvent> {
|
778
781
|
data_typed: AddStakeEvent;
|
782
|
+
type_arguments: [];
|
779
783
|
}
|
780
784
|
|
781
785
|
export class AllowedValidators {
|
@@ -794,6 +798,7 @@ export namespace stake {
|
|
794
798
|
export interface DistributeRewardsEventInstance
|
795
799
|
extends aptos.TypedEventInstance<DistributeRewardsEvent> {
|
796
800
|
data_typed: DistributeRewardsEvent;
|
801
|
+
type_arguments: [];
|
797
802
|
}
|
798
803
|
|
799
804
|
export class IncreaseLockupEvent {
|
@@ -805,6 +810,7 @@ export namespace stake {
|
|
805
810
|
export interface IncreaseLockupEventInstance
|
806
811
|
extends aptos.TypedEventInstance<IncreaseLockupEvent> {
|
807
812
|
data_typed: IncreaseLockupEvent;
|
813
|
+
type_arguments: [];
|
808
814
|
}
|
809
815
|
|
810
816
|
export class IndividualValidatorPerformance {
|
@@ -819,6 +825,7 @@ export namespace stake {
|
|
819
825
|
export interface JoinValidatorSetEventInstance
|
820
826
|
extends aptos.TypedEventInstance<JoinValidatorSetEvent> {
|
821
827
|
data_typed: JoinValidatorSetEvent;
|
828
|
+
type_arguments: [];
|
822
829
|
}
|
823
830
|
|
824
831
|
export class LeaveValidatorSetEvent {
|
@@ -828,6 +835,7 @@ export namespace stake {
|
|
828
835
|
export interface LeaveValidatorSetEventInstance
|
829
836
|
extends aptos.TypedEventInstance<LeaveValidatorSetEvent> {
|
830
837
|
data_typed: LeaveValidatorSetEvent;
|
838
|
+
type_arguments: [];
|
831
839
|
}
|
832
840
|
|
833
841
|
export class OwnerCapability {
|
@@ -842,6 +850,7 @@ export namespace stake {
|
|
842
850
|
export interface ReactivateStakeEventInstance
|
843
851
|
extends aptos.TypedEventInstance<ReactivateStakeEvent> {
|
844
852
|
data_typed: ReactivateStakeEvent;
|
853
|
+
type_arguments: [];
|
845
854
|
}
|
846
855
|
|
847
856
|
export class RegisterValidatorCandidateEvent {
|
@@ -851,6 +860,7 @@ export namespace stake {
|
|
851
860
|
export interface RegisterValidatorCandidateEventInstance
|
852
861
|
extends aptos.TypedEventInstance<RegisterValidatorCandidateEvent> {
|
853
862
|
data_typed: RegisterValidatorCandidateEvent;
|
863
|
+
type_arguments: [];
|
854
864
|
}
|
855
865
|
|
856
866
|
export class RotateConsensusKeyEvent {
|
@@ -862,6 +872,7 @@ export namespace stake {
|
|
862
872
|
export interface RotateConsensusKeyEventInstance
|
863
873
|
extends aptos.TypedEventInstance<RotateConsensusKeyEvent> {
|
864
874
|
data_typed: RotateConsensusKeyEvent;
|
875
|
+
type_arguments: [];
|
865
876
|
}
|
866
877
|
|
867
878
|
export class SetOperatorEvent {
|
@@ -873,6 +884,7 @@ export namespace stake {
|
|
873
884
|
export interface SetOperatorEventInstance
|
874
885
|
extends aptos.TypedEventInstance<SetOperatorEvent> {
|
875
886
|
data_typed: SetOperatorEvent;
|
887
|
+
type_arguments: [];
|
876
888
|
}
|
877
889
|
|
878
890
|
export class StakePool {
|
@@ -905,6 +917,7 @@ export namespace stake {
|
|
905
917
|
export interface UnlockStakeEventInstance
|
906
918
|
extends aptos.TypedEventInstance<UnlockStakeEvent> {
|
907
919
|
data_typed: UnlockStakeEvent;
|
920
|
+
type_arguments: [];
|
908
921
|
}
|
909
922
|
|
910
923
|
export class UpdateNetworkAndFullnodeAddressesEvent {
|
@@ -918,6 +931,7 @@ export namespace stake {
|
|
918
931
|
export interface UpdateNetworkAndFullnodeAddressesEventInstance
|
919
932
|
extends aptos.TypedEventInstance<UpdateNetworkAndFullnodeAddressesEvent> {
|
920
933
|
data_typed: UpdateNetworkAndFullnodeAddressesEvent;
|
934
|
+
type_arguments: [];
|
921
935
|
}
|
922
936
|
|
923
937
|
export class ValidatorConfig {
|
@@ -954,71 +968,85 @@ export namespace stake {
|
|
954
968
|
export interface WithdrawStakeEventInstance
|
955
969
|
extends aptos.TypedEventInstance<WithdrawStakeEvent> {
|
956
970
|
data_typed: WithdrawStakeEvent;
|
971
|
+
type_arguments: [];
|
957
972
|
}
|
958
973
|
|
959
974
|
export interface AddStakePayload
|
960
975
|
extends aptos.TypedEntryFunctionPayload<[bigint]> {
|
961
976
|
arguments_typed: [bigint];
|
977
|
+
type_arguments: [];
|
962
978
|
}
|
963
979
|
|
964
980
|
export interface IncreaseLockupPayload
|
965
981
|
extends aptos.TypedEntryFunctionPayload<[]> {
|
966
982
|
arguments_typed: [];
|
983
|
+
type_arguments: [];
|
967
984
|
}
|
968
985
|
|
969
986
|
export interface InitializeStakeOwnerPayload
|
970
987
|
extends aptos.TypedEntryFunctionPayload<[bigint, Address, Address]> {
|
971
988
|
arguments_typed: [bigint, Address, Address];
|
989
|
+
type_arguments: [];
|
972
990
|
}
|
973
991
|
|
974
992
|
export interface InitializeValidatorPayload
|
975
993
|
extends aptos.TypedEntryFunctionPayload<[string, string, string, string]> {
|
976
994
|
arguments_typed: [string, string, string, string];
|
995
|
+
type_arguments: [];
|
977
996
|
}
|
978
997
|
|
979
998
|
export interface JoinValidatorSetPayload
|
980
999
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
981
1000
|
arguments_typed: [Address];
|
1001
|
+
type_arguments: [];
|
982
1002
|
}
|
983
1003
|
|
984
1004
|
export interface LeaveValidatorSetPayload
|
985
1005
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
986
1006
|
arguments_typed: [Address];
|
1007
|
+
type_arguments: [];
|
987
1008
|
}
|
988
1009
|
|
989
1010
|
export interface ReactivateStakePayload
|
990
1011
|
extends aptos.TypedEntryFunctionPayload<[bigint]> {
|
991
1012
|
arguments_typed: [bigint];
|
1013
|
+
type_arguments: [];
|
992
1014
|
}
|
993
1015
|
|
994
1016
|
export interface RotateConsensusKeyPayload
|
995
1017
|
extends aptos.TypedEntryFunctionPayload<[Address, string, string]> {
|
996
1018
|
arguments_typed: [Address, string, string];
|
1019
|
+
type_arguments: [];
|
997
1020
|
}
|
998
1021
|
|
999
1022
|
export interface SetDelegatedVoterPayload
|
1000
1023
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
1001
1024
|
arguments_typed: [Address];
|
1025
|
+
type_arguments: [];
|
1002
1026
|
}
|
1003
1027
|
|
1004
1028
|
export interface SetOperatorPayload
|
1005
1029
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
1006
1030
|
arguments_typed: [Address];
|
1031
|
+
type_arguments: [];
|
1007
1032
|
}
|
1008
1033
|
|
1009
1034
|
export interface UnlockPayload
|
1010
1035
|
extends aptos.TypedEntryFunctionPayload<[bigint]> {
|
1011
1036
|
arguments_typed: [bigint];
|
1037
|
+
type_arguments: [];
|
1012
1038
|
}
|
1013
1039
|
|
1014
1040
|
export interface UpdateNetworkAndFullnodeAddressesPayload
|
1015
1041
|
extends aptos.TypedEntryFunctionPayload<[Address, string, string]> {
|
1016
1042
|
arguments_typed: [Address, string, string];
|
1043
|
+
type_arguments: [];
|
1017
1044
|
}
|
1018
1045
|
|
1019
1046
|
export interface WithdrawPayload
|
1020
1047
|
extends aptos.TypedEntryFunctionPayload<[bigint]> {
|
1021
1048
|
arguments_typed: [bigint];
|
1049
|
+
type_arguments: [];
|
1022
1050
|
}
|
1023
1051
|
|
1024
1052
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -1163,6 +1191,7 @@ export namespace voting {
|
|
1163
1191
|
export interface CreateProposalEventInstance
|
1164
1192
|
extends aptos.TypedEventInstance<CreateProposalEvent> {
|
1165
1193
|
data_typed: CreateProposalEvent;
|
1194
|
+
type_arguments: [];
|
1166
1195
|
}
|
1167
1196
|
|
1168
1197
|
export class Proposal<T0> {
|
@@ -1188,6 +1217,7 @@ export namespace voting {
|
|
1188
1217
|
export interface RegisterForumEventInstance
|
1189
1218
|
extends aptos.TypedEventInstance<RegisterForumEvent> {
|
1190
1219
|
data_typed: RegisterForumEvent;
|
1220
|
+
type_arguments: [];
|
1191
1221
|
}
|
1192
1222
|
|
1193
1223
|
export class ResolveProposal {
|
@@ -1205,6 +1235,7 @@ export namespace voting {
|
|
1205
1235
|
export interface VoteEventInstance
|
1206
1236
|
extends aptos.TypedEventInstance<VoteEvent> {
|
1207
1237
|
data_typed: VoteEvent;
|
1238
|
+
type_arguments: [];
|
1208
1239
|
}
|
1209
1240
|
|
1210
1241
|
export class VotingEvents {
|
@@ -1334,6 +1365,7 @@ export namespace account {
|
|
1334
1365
|
export interface CoinRegisterEventInstance
|
1335
1366
|
extends aptos.TypedEventInstance<CoinRegisterEvent> {
|
1336
1367
|
data_typed: CoinRegisterEvent;
|
1368
|
+
type_arguments: [];
|
1337
1369
|
}
|
1338
1370
|
|
1339
1371
|
export class KeyRotationEvent {
|
@@ -1344,6 +1376,7 @@ export namespace account {
|
|
1344
1376
|
export interface KeyRotationEventInstance
|
1345
1377
|
extends aptos.TypedEventInstance<KeyRotationEvent> {
|
1346
1378
|
data_typed: KeyRotationEvent;
|
1379
|
+
type_arguments: [];
|
1347
1380
|
}
|
1348
1381
|
|
1349
1382
|
export class OriginatingAddress {
|
@@ -1384,11 +1417,13 @@ export namespace account {
|
|
1384
1417
|
export interface OfferSignerCapabilityPayload
|
1385
1418
|
extends aptos.TypedEntryFunctionPayload<[string, number, string, Address]> {
|
1386
1419
|
arguments_typed: [string, number, string, Address];
|
1420
|
+
type_arguments: [];
|
1387
1421
|
}
|
1388
1422
|
|
1389
1423
|
export interface RevokeSignerCapabilityPayload
|
1390
1424
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
1391
1425
|
arguments_typed: [Address];
|
1426
|
+
type_arguments: [];
|
1392
1427
|
}
|
1393
1428
|
|
1394
1429
|
export interface RotateAuthenticationKeyPayload
|
@@ -1396,6 +1431,7 @@ export namespace account {
|
|
1396
1431
|
[number, string, number, string, string, string]
|
1397
1432
|
> {
|
1398
1433
|
arguments_typed: [number, string, number, string, string, string];
|
1434
|
+
type_arguments: [];
|
1399
1435
|
}
|
1400
1436
|
|
1401
1437
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -1521,6 +1557,7 @@ export namespace version {
|
|
1521
1557
|
export interface SetVersionPayload
|
1522
1558
|
extends aptos.TypedEntryFunctionPayload<[bigint]> {
|
1523
1559
|
arguments_typed: [bigint];
|
1560
|
+
type_arguments: [];
|
1524
1561
|
}
|
1525
1562
|
|
1526
1563
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -1846,6 +1883,7 @@ export namespace vesting {
|
|
1846
1883
|
export interface AdminWithdrawEventInstance
|
1847
1884
|
extends aptos.TypedEventInstance<AdminWithdrawEvent> {
|
1848
1885
|
data_typed: AdminWithdrawEvent;
|
1886
|
+
type_arguments: [];
|
1849
1887
|
}
|
1850
1888
|
|
1851
1889
|
export class CreateVestingContractEvent {
|
@@ -1861,6 +1899,7 @@ export namespace vesting {
|
|
1861
1899
|
export interface CreateVestingContractEventInstance
|
1862
1900
|
extends aptos.TypedEventInstance<CreateVestingContractEvent> {
|
1863
1901
|
data_typed: CreateVestingContractEvent;
|
1902
|
+
type_arguments: [];
|
1864
1903
|
}
|
1865
1904
|
|
1866
1905
|
export class DistributeEvent {
|
@@ -1872,6 +1911,7 @@ export namespace vesting {
|
|
1872
1911
|
export interface DistributeEventInstance
|
1873
1912
|
extends aptos.TypedEventInstance<DistributeEvent> {
|
1874
1913
|
data_typed: DistributeEvent;
|
1914
|
+
type_arguments: [];
|
1875
1915
|
}
|
1876
1916
|
|
1877
1917
|
export class ResetLockupEvent {
|
@@ -1884,6 +1924,7 @@ export namespace vesting {
|
|
1884
1924
|
export interface ResetLockupEventInstance
|
1885
1925
|
extends aptos.TypedEventInstance<ResetLockupEvent> {
|
1886
1926
|
data_typed: ResetLockupEvent;
|
1927
|
+
type_arguments: [];
|
1887
1928
|
}
|
1888
1929
|
|
1889
1930
|
export class SetBeneficiaryEvent {
|
@@ -1897,6 +1938,7 @@ export namespace vesting {
|
|
1897
1938
|
export interface SetBeneficiaryEventInstance
|
1898
1939
|
extends aptos.TypedEventInstance<SetBeneficiaryEvent> {
|
1899
1940
|
data_typed: SetBeneficiaryEvent;
|
1941
|
+
type_arguments: [];
|
1900
1942
|
}
|
1901
1943
|
|
1902
1944
|
export class StakingInfo {
|
@@ -1914,6 +1956,7 @@ export namespace vesting {
|
|
1914
1956
|
export interface TerminateEventInstance
|
1915
1957
|
extends aptos.TypedEventInstance<TerminateEvent> {
|
1916
1958
|
data_typed: TerminateEvent;
|
1959
|
+
type_arguments: [];
|
1917
1960
|
}
|
1918
1961
|
|
1919
1962
|
export class UnlockRewardsEvent {
|
@@ -1926,6 +1969,7 @@ export namespace vesting {
|
|
1926
1969
|
export interface UnlockRewardsEventInstance
|
1927
1970
|
extends aptos.TypedEventInstance<UnlockRewardsEvent> {
|
1928
1971
|
data_typed: UnlockRewardsEvent;
|
1972
|
+
type_arguments: [];
|
1929
1973
|
}
|
1930
1974
|
|
1931
1975
|
export class UpdateOperatorEvent {
|
@@ -1940,6 +1984,7 @@ export namespace vesting {
|
|
1940
1984
|
export interface UpdateOperatorEventInstance
|
1941
1985
|
extends aptos.TypedEventInstance<UpdateOperatorEvent> {
|
1942
1986
|
data_typed: UpdateOperatorEvent;
|
1987
|
+
type_arguments: [];
|
1943
1988
|
}
|
1944
1989
|
|
1945
1990
|
export class UpdateVoterEvent {
|
@@ -1953,6 +1998,7 @@ export namespace vesting {
|
|
1953
1998
|
export interface UpdateVoterEventInstance
|
1954
1999
|
extends aptos.TypedEventInstance<UpdateVoterEvent> {
|
1955
2000
|
data_typed: UpdateVoterEvent;
|
2001
|
+
type_arguments: [];
|
1956
2002
|
}
|
1957
2003
|
|
1958
2004
|
export class VestEvent {
|
@@ -1966,6 +2012,7 @@ export namespace vesting {
|
|
1966
2012
|
export interface VestEventInstance
|
1967
2013
|
extends aptos.TypedEventInstance<VestEvent> {
|
1968
2014
|
data_typed: VestEvent;
|
2015
|
+
type_arguments: [];
|
1969
2016
|
}
|
1970
2017
|
|
1971
2018
|
export class VestingAccountManagement {
|
@@ -2003,65 +2050,78 @@ export namespace vesting {
|
|
2003
2050
|
export interface AdminWithdrawPayload
|
2004
2051
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
2005
2052
|
arguments_typed: [Address];
|
2053
|
+
type_arguments: [];
|
2006
2054
|
}
|
2007
2055
|
|
2008
2056
|
export interface DistributePayload
|
2009
2057
|
extends aptos.TypedEntryFunctionPayload<[]> {
|
2010
2058
|
arguments_typed: [];
|
2059
|
+
type_arguments: [];
|
2011
2060
|
}
|
2012
2061
|
|
2013
2062
|
export interface ResetBeneficiaryPayload
|
2014
2063
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2015
2064
|
arguments_typed: [Address, Address];
|
2065
|
+
type_arguments: [];
|
2016
2066
|
}
|
2017
2067
|
|
2018
2068
|
export interface ResetLockupPayload
|
2019
2069
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
2020
2070
|
arguments_typed: [Address];
|
2071
|
+
type_arguments: [];
|
2021
2072
|
}
|
2022
2073
|
|
2023
2074
|
export interface SetBeneficiaryPayload
|
2024
2075
|
extends aptos.TypedEntryFunctionPayload<[Address, Address, Address]> {
|
2025
2076
|
arguments_typed: [Address, Address, Address];
|
2077
|
+
type_arguments: [];
|
2026
2078
|
}
|
2027
2079
|
|
2028
2080
|
export interface SetBeneficiaryResetterPayload
|
2029
2081
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2030
2082
|
arguments_typed: [Address, Address];
|
2083
|
+
type_arguments: [];
|
2031
2084
|
}
|
2032
2085
|
|
2033
2086
|
export interface SetManagementRolePayload
|
2034
2087
|
extends aptos.TypedEntryFunctionPayload<[Address, string, Address]> {
|
2035
2088
|
arguments_typed: [Address, string, Address];
|
2089
|
+
type_arguments: [];
|
2036
2090
|
}
|
2037
2091
|
|
2038
2092
|
export interface TerminateVestingContractPayload
|
2039
2093
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
2040
2094
|
arguments_typed: [Address];
|
2095
|
+
type_arguments: [];
|
2041
2096
|
}
|
2042
2097
|
|
2043
2098
|
export interface UnlockRewardsPayload
|
2044
2099
|
extends aptos.TypedEntryFunctionPayload<[]> {
|
2045
2100
|
arguments_typed: [];
|
2101
|
+
type_arguments: [];
|
2046
2102
|
}
|
2047
2103
|
|
2048
2104
|
export interface UpdateOperatorPayload
|
2049
2105
|
extends aptos.TypedEntryFunctionPayload<[Address, Address, bigint]> {
|
2050
2106
|
arguments_typed: [Address, Address, bigint];
|
2107
|
+
type_arguments: [];
|
2051
2108
|
}
|
2052
2109
|
|
2053
2110
|
export interface UpdateOperatorWithSameCommissionPayload
|
2054
2111
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2055
2112
|
arguments_typed: [Address, Address];
|
2113
|
+
type_arguments: [];
|
2056
2114
|
}
|
2057
2115
|
|
2058
2116
|
export interface UpdateVoterPayload
|
2059
2117
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2060
2118
|
arguments_typed: [Address, Address];
|
2119
|
+
type_arguments: [];
|
2061
2120
|
}
|
2062
2121
|
|
2063
2122
|
export interface VestPayload extends aptos.TypedEntryFunctionPayload<[]> {
|
2064
2123
|
arguments_typed: [];
|
2124
|
+
type_arguments: [];
|
2065
2125
|
}
|
2066
2126
|
|
2067
2127
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -2295,16 +2355,19 @@ export namespace aptos_coin {
|
|
2295
2355
|
export interface ClaimMintCapabilityPayload
|
2296
2356
|
extends aptos.TypedEntryFunctionPayload<[]> {
|
2297
2357
|
arguments_typed: [];
|
2358
|
+
type_arguments: [];
|
2298
2359
|
}
|
2299
2360
|
|
2300
2361
|
export interface DelegateMintCapabilityPayload
|
2301
2362
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
2302
2363
|
arguments_typed: [Address];
|
2364
|
+
type_arguments: [];
|
2303
2365
|
}
|
2304
2366
|
|
2305
2367
|
export interface MintPayload
|
2306
2368
|
extends aptos.TypedEntryFunctionPayload<[Address, bigint]> {
|
2307
2369
|
arguments_typed: [Address, bigint];
|
2370
|
+
type_arguments: [];
|
2308
2371
|
}
|
2309
2372
|
|
2310
2373
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -2498,8 +2561,8 @@ export class managed_coin extends aptos.AptosBaseProcessor {
|
|
2498
2561
|
return new managed_coin({ ...managed_coin.DEFAULT_OPTIONS, ...options });
|
2499
2562
|
}
|
2500
2563
|
|
2501
|
-
onEntryBurn
|
2502
|
-
func: (call: managed_coin.BurnPayload
|
2564
|
+
onEntryBurn(
|
2565
|
+
func: (call: managed_coin.BurnPayload, ctx: aptos.AptosContext) => void,
|
2503
2566
|
filter?: aptos.CallFilter
|
2504
2567
|
): managed_coin {
|
2505
2568
|
this.onEntryFunctionCall(func, {
|
@@ -2509,9 +2572,9 @@ export class managed_coin extends aptos.AptosBaseProcessor {
|
|
2509
2572
|
return this;
|
2510
2573
|
}
|
2511
2574
|
|
2512
|
-
onEntryInitialize
|
2575
|
+
onEntryInitialize(
|
2513
2576
|
func: (
|
2514
|
-
call: managed_coin.InitializePayload
|
2577
|
+
call: managed_coin.InitializePayload,
|
2515
2578
|
ctx: aptos.AptosContext
|
2516
2579
|
) => void,
|
2517
2580
|
filter?: aptos.CallFilter
|
@@ -2523,8 +2586,8 @@ export class managed_coin extends aptos.AptosBaseProcessor {
|
|
2523
2586
|
return this;
|
2524
2587
|
}
|
2525
2588
|
|
2526
|
-
onEntryMint
|
2527
|
-
func: (call: managed_coin.MintPayload
|
2589
|
+
onEntryMint(
|
2590
|
+
func: (call: managed_coin.MintPayload, ctx: aptos.AptosContext) => void,
|
2528
2591
|
filter?: aptos.CallFilter
|
2529
2592
|
): managed_coin {
|
2530
2593
|
this.onEntryFunctionCall(func, {
|
@@ -2534,11 +2597,8 @@ export class managed_coin extends aptos.AptosBaseProcessor {
|
|
2534
2597
|
return this;
|
2535
2598
|
}
|
2536
2599
|
|
2537
|
-
onEntryRegister
|
2538
|
-
func: (
|
2539
|
-
call: managed_coin.RegisterPayload<T0>,
|
2540
|
-
ctx: aptos.AptosContext
|
2541
|
-
) => void,
|
2600
|
+
onEntryRegister(
|
2601
|
+
func: (call: managed_coin.RegisterPayload, ctx: aptos.AptosContext) => void,
|
2542
2602
|
filter?: aptos.CallFilter
|
2543
2603
|
): managed_coin {
|
2544
2604
|
this.onEntryFunctionCall(func, {
|
@@ -2560,24 +2620,27 @@ export namespace managed_coin {
|
|
2560
2620
|
mint_cap: coin.MintCapability<T0>;
|
2561
2621
|
}
|
2562
2622
|
|
2563
|
-
export interface BurnPayload
|
2623
|
+
export interface BurnPayload
|
2564
2624
|
extends aptos.TypedEntryFunctionPayload<[bigint]> {
|
2565
2625
|
arguments_typed: [bigint];
|
2626
|
+
type_arguments: [string];
|
2566
2627
|
}
|
2567
2628
|
|
2568
|
-
export interface InitializePayload
|
2629
|
+
export interface InitializePayload
|
2569
2630
|
extends aptos.TypedEntryFunctionPayload<[string, string, number, Boolean]> {
|
2570
2631
|
arguments_typed: [string, string, number, Boolean];
|
2632
|
+
type_arguments: [string];
|
2571
2633
|
}
|
2572
2634
|
|
2573
|
-
export interface MintPayload
|
2635
|
+
export interface MintPayload
|
2574
2636
|
extends aptos.TypedEntryFunctionPayload<[Address, bigint]> {
|
2575
2637
|
arguments_typed: [Address, bigint];
|
2638
|
+
type_arguments: [string];
|
2576
2639
|
}
|
2577
2640
|
|
2578
|
-
export interface RegisterPayload<
|
2579
|
-
extends aptos.TypedEntryFunctionPayload<[]> {
|
2641
|
+
export interface RegisterPayload extends aptos.TypedEntryFunctionPayload<[]> {
|
2580
2642
|
arguments_typed: [];
|
2643
|
+
type_arguments: [string];
|
2581
2644
|
}
|
2582
2645
|
|
2583
2646
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -2659,11 +2722,13 @@ export namespace aptos_account {
|
|
2659
2722
|
export interface CreateAccountPayload
|
2660
2723
|
extends aptos.TypedEntryFunctionPayload<[]> {
|
2661
2724
|
arguments_typed: [];
|
2725
|
+
type_arguments: [];
|
2662
2726
|
}
|
2663
2727
|
|
2664
2728
|
export interface TransferPayload
|
2665
2729
|
extends aptos.TypedEntryFunctionPayload<[Address, bigint]> {
|
2666
2730
|
arguments_typed: [Address, bigint];
|
2731
|
+
type_arguments: [];
|
2667
2732
|
}
|
2668
2733
|
|
2669
2734
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -2842,41 +2907,49 @@ export namespace staking_proxy {
|
|
2842
2907
|
export interface SetOperatorPayload
|
2843
2908
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2844
2909
|
arguments_typed: [Address, Address];
|
2910
|
+
type_arguments: [];
|
2845
2911
|
}
|
2846
2912
|
|
2847
2913
|
export interface SetStakePoolOperatorPayload
|
2848
2914
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
2849
2915
|
arguments_typed: [Address];
|
2916
|
+
type_arguments: [];
|
2850
2917
|
}
|
2851
2918
|
|
2852
2919
|
export interface SetStakePoolVoterPayload
|
2853
2920
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
2854
2921
|
arguments_typed: [Address];
|
2922
|
+
type_arguments: [];
|
2855
2923
|
}
|
2856
2924
|
|
2857
2925
|
export interface SetStakingContractOperatorPayload
|
2858
2926
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2859
2927
|
arguments_typed: [Address, Address];
|
2928
|
+
type_arguments: [];
|
2860
2929
|
}
|
2861
2930
|
|
2862
2931
|
export interface SetStakingContractVoterPayload
|
2863
2932
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2864
2933
|
arguments_typed: [Address, Address];
|
2934
|
+
type_arguments: [];
|
2865
2935
|
}
|
2866
2936
|
|
2867
2937
|
export interface SetVestingContractOperatorPayload
|
2868
2938
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2869
2939
|
arguments_typed: [Address, Address];
|
2940
|
+
type_arguments: [];
|
2870
2941
|
}
|
2871
2942
|
|
2872
2943
|
export interface SetVestingContractVoterPayload
|
2873
2944
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2874
2945
|
arguments_typed: [Address, Address];
|
2946
|
+
type_arguments: [];
|
2875
2947
|
}
|
2876
2948
|
|
2877
2949
|
export interface SetVoterPayload
|
2878
2950
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
2879
2951
|
arguments_typed: [Address, Address];
|
2952
|
+
type_arguments: [];
|
2880
2953
|
}
|
2881
2954
|
|
2882
2955
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -2980,6 +3053,7 @@ export namespace reconfiguration {
|
|
2980
3053
|
export interface NewEpochEventInstance
|
2981
3054
|
extends aptos.TypedEventInstance<NewEpochEvent> {
|
2982
3055
|
data_typed: NewEpochEvent;
|
3056
|
+
type_arguments: [];
|
2983
3057
|
}
|
2984
3058
|
|
2985
3059
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -3115,6 +3189,7 @@ export namespace aptos_governance {
|
|
3115
3189
|
export interface CreateProposalEventInstance
|
3116
3190
|
extends aptos.TypedEventInstance<CreateProposalEvent> {
|
3117
3191
|
data_typed: CreateProposalEvent;
|
3192
|
+
type_arguments: [];
|
3118
3193
|
}
|
3119
3194
|
|
3120
3195
|
export class GovernanceConfig {
|
@@ -3147,6 +3222,7 @@ export namespace aptos_governance {
|
|
3147
3222
|
export interface UpdateConfigEventInstance
|
3148
3223
|
extends aptos.TypedEventInstance<UpdateConfigEvent> {
|
3149
3224
|
data_typed: UpdateConfigEvent;
|
3225
|
+
type_arguments: [];
|
3150
3226
|
}
|
3151
3227
|
|
3152
3228
|
export class VoteEvent {
|
@@ -3160,6 +3236,7 @@ export namespace aptos_governance {
|
|
3160
3236
|
export interface VoteEventInstance
|
3161
3237
|
extends aptos.TypedEventInstance<VoteEvent> {
|
3162
3238
|
data_typed: VoteEvent;
|
3239
|
+
type_arguments: [];
|
3163
3240
|
}
|
3164
3241
|
|
3165
3242
|
export class VotingRecords {
|
@@ -3169,16 +3246,19 @@ export namespace aptos_governance {
|
|
3169
3246
|
export interface AddApprovedScriptHashScriptPayload
|
3170
3247
|
extends aptos.TypedEntryFunctionPayload<[]> {
|
3171
3248
|
arguments_typed: [];
|
3249
|
+
type_arguments: [];
|
3172
3250
|
}
|
3173
3251
|
|
3174
3252
|
export interface CreateProposalPayload
|
3175
3253
|
extends aptos.TypedEntryFunctionPayload<[Address, string, string, string]> {
|
3176
3254
|
arguments_typed: [Address, string, string, string];
|
3255
|
+
type_arguments: [];
|
3177
3256
|
}
|
3178
3257
|
|
3179
3258
|
export interface VotePayload
|
3180
3259
|
extends aptos.TypedEntryFunctionPayload<[Address, bigint, Boolean]> {
|
3181
3260
|
arguments_typed: [Address, bigint, Boolean];
|
3261
|
+
type_arguments: [];
|
3182
3262
|
}
|
3183
3263
|
|
3184
3264
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -3273,16 +3353,19 @@ export namespace resource_account {
|
|
3273
3353
|
export interface CreateResourceAccountPayload
|
3274
3354
|
extends aptos.TypedEntryFunctionPayload<[string, string]> {
|
3275
3355
|
arguments_typed: [string, string];
|
3356
|
+
type_arguments: [];
|
3276
3357
|
}
|
3277
3358
|
|
3278
3359
|
export interface CreateResourceAccountAndFundPayload
|
3279
3360
|
extends aptos.TypedEntryFunctionPayload<[string, string, bigint]> {
|
3280
3361
|
arguments_typed: [string, string, bigint];
|
3362
|
+
type_arguments: [];
|
3281
3363
|
}
|
3282
3364
|
|
3283
3365
|
export interface CreateResourceAccountAndPublishPackagePayload
|
3284
3366
|
extends aptos.TypedEntryFunctionPayload<[string, string, string[]]> {
|
3285
3367
|
arguments_typed: [string, string, string[]];
|
3368
|
+
type_arguments: [];
|
3286
3369
|
}
|
3287
3370
|
|
3288
3371
|
export function loadTypes(registry: aptos.TypeRegistry) {
|
@@ -3572,6 +3655,7 @@ export namespace staking_contract {
|
|
3572
3655
|
export interface AddDistributionEventInstance
|
3573
3656
|
extends aptos.TypedEventInstance<AddDistributionEvent> {
|
3574
3657
|
data_typed: AddDistributionEvent;
|
3658
|
+
type_arguments: [];
|
3575
3659
|
}
|
3576
3660
|
|
3577
3661
|
export class AddStakeEvent {
|
@@ -3583,6 +3667,7 @@ export namespace staking_contract {
|
|
3583
3667
|
export interface AddStakeEventInstance
|
3584
3668
|
extends aptos.TypedEventInstance<AddStakeEvent> {
|
3585
3669
|
data_typed: AddStakeEvent;
|
3670
|
+
type_arguments: [];
|
3586
3671
|
}
|
3587
3672
|
|
3588
3673
|
export class CreateStakingContractEvent {
|
@@ -3596,6 +3681,7 @@ export namespace staking_contract {
|
|
3596
3681
|
export interface CreateStakingContractEventInstance
|
3597
3682
|
extends aptos.TypedEventInstance<CreateStakingContractEvent> {
|
3598
3683
|
data_typed: CreateStakingContractEvent;
|
3684
|
+
type_arguments: [];
|
3599
3685
|
}
|
3600
3686
|
|
3601
3687
|
export class DistributeEvent {
|
@@ -3608,6 +3694,7 @@ export namespace staking_contract {
|
|
3608
3694
|
export interface DistributeEventInstance
|
3609
3695
|
extends aptos.TypedEventInstance<DistributeEvent> {
|
3610
3696
|
data_typed: DistributeEvent;
|
3697
|
+
type_arguments: [];
|
3611
3698
|
}
|
3612
3699
|
|
3613
3700
|
export class RequestCommissionEvent {
|
@@ -3620,6 +3707,7 @@ export namespace staking_contract {
|
|
3620
3707
|
export interface RequestCommissionEventInstance
|
3621
3708
|
extends aptos.TypedEventInstance<RequestCommissionEvent> {
|
3622
3709
|
data_typed: RequestCommissionEvent;
|
3710
|
+
type_arguments: [];
|
3623
3711
|
}
|
3624
3712
|
|
3625
3713
|
export class ResetLockupEvent {
|
@@ -3630,6 +3718,7 @@ export namespace staking_contract {
|
|
3630
3718
|
export interface ResetLockupEventInstance
|
3631
3719
|
extends aptos.TypedEventInstance<ResetLockupEvent> {
|
3632
3720
|
data_typed: ResetLockupEvent;
|
3721
|
+
type_arguments: [];
|
3633
3722
|
}
|
3634
3723
|
|
3635
3724
|
export class StakingContract {
|
@@ -3666,6 +3755,7 @@ export namespace staking_contract {
|
|
3666
3755
|
export interface SwitchOperatorEventInstance
|
3667
3756
|
extends aptos.TypedEventInstance<SwitchOperatorEvent> {
|
3668
3757
|
data_typed: SwitchOperatorEvent;
|
3758
|
+
type_arguments: [];
|
3669
3759
|
}
|
3670
3760
|
|
3671
3761
|
export class UnlockStakeEvent {
|
@@ -3678,6 +3768,7 @@ export namespace staking_contract {
|
|
3678
3768
|
export interface UnlockStakeEventInstance
|
3679
3769
|
extends aptos.TypedEventInstance<UnlockStakeEvent> {
|
3680
3770
|
data_typed: UnlockStakeEvent;
|
3771
|
+
type_arguments: [];
|
3681
3772
|
}
|
3682
3773
|
|
3683
3774
|
export class UpdateVoterEvent {
|
@@ -3690,11 +3781,13 @@ export namespace staking_contract {
|
|
3690
3781
|
export interface UpdateVoterEventInstance
|
3691
3782
|
extends aptos.TypedEventInstance<UpdateVoterEvent> {
|
3692
3783
|
data_typed: UpdateVoterEvent;
|
3784
|
+
type_arguments: [];
|
3693
3785
|
}
|
3694
3786
|
|
3695
3787
|
export interface AddStakePayload
|
3696
3788
|
extends aptos.TypedEntryFunctionPayload<[Address, bigint]> {
|
3697
3789
|
arguments_typed: [Address, bigint];
|
3790
|
+
type_arguments: [];
|
3698
3791
|
}
|
3699
3792
|
|
3700
3793
|
export interface CreateStakingContractPayload
|
@@ -3702,46 +3795,55 @@ export namespace staking_contract {
|
|
3702
3795
|
[Address, Address, bigint, bigint, string]
|
3703
3796
|
> {
|
3704
3797
|
arguments_typed: [Address, Address, bigint, bigint, string];
|
3798
|
+
type_arguments: [];
|
3705
3799
|
}
|
3706
3800
|
|
3707
3801
|
export interface DistributePayload
|
3708
3802
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
3709
3803
|
arguments_typed: [Address];
|
3804
|
+
type_arguments: [];
|
3710
3805
|
}
|
3711
3806
|
|
3712
3807
|
export interface RequestCommissionPayload
|
3713
3808
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
3714
3809
|
arguments_typed: [Address, Address];
|
3810
|
+
type_arguments: [];
|
3715
3811
|
}
|
3716
3812
|
|
3717
3813
|
export interface ResetLockupPayload
|
3718
3814
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
3719
3815
|
arguments_typed: [Address];
|
3816
|
+
type_arguments: [];
|
3720
3817
|
}
|
3721
3818
|
|
3722
3819
|
export interface SwitchOperatorPayload
|
3723
3820
|
extends aptos.TypedEntryFunctionPayload<[Address, Address, bigint]> {
|
3724
3821
|
arguments_typed: [Address, Address, bigint];
|
3822
|
+
type_arguments: [];
|
3725
3823
|
}
|
3726
3824
|
|
3727
3825
|
export interface SwitchOperatorWithSameCommissionPayload
|
3728
3826
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
3729
3827
|
arguments_typed: [Address, Address];
|
3828
|
+
type_arguments: [];
|
3730
3829
|
}
|
3731
3830
|
|
3732
3831
|
export interface UnlockRewardsPayload
|
3733
3832
|
extends aptos.TypedEntryFunctionPayload<[Address]> {
|
3734
3833
|
arguments_typed: [Address];
|
3834
|
+
type_arguments: [];
|
3735
3835
|
}
|
3736
3836
|
|
3737
3837
|
export interface UnlockStakePayload
|
3738
3838
|
extends aptos.TypedEntryFunctionPayload<[Address, bigint]> {
|
3739
3839
|
arguments_typed: [Address, bigint];
|
3840
|
+
type_arguments: [];
|
3740
3841
|
}
|
3741
3842
|
|
3742
3843
|
export interface UpdateVoterPayload
|
3743
3844
|
extends aptos.TypedEntryFunctionPayload<[Address, Address]> {
|
3744
3845
|
arguments_typed: [Address, Address];
|
3846
|
+
type_arguments: [];
|
3745
3847
|
}
|
3746
3848
|
|
3747
3849
|
export function loadTypes(registry: aptos.TypeRegistry) {
|