@sentio/sdk 2.0.0-rc.16 → 2.0.0-rc.17
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/builtin/0x1.d.ts +0 -226
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/aptos/builtin/0x3.d.ts +0 -82
- package/lib/aptos/builtin/0x3.js.map +1 -1
- package/lib/aptos/codegen/codegen.js +0 -4
- package/lib/aptos/codegen/codegen.js.map +1 -1
- package/lib/aptos/models.d.ts +0 -10
- package/lib/aptos/models.js.map +1 -1
- package/lib/aptos/move-coder.js +0 -2
- package/lib/aptos/move-coder.js.map +1 -1
- package/lib/aptos/tests/types/reserved.d.ts +0 -100
- package/lib/aptos/tests/types/reserved.js.map +1 -1
- package/lib/aptos/tests/types/soffl3.d.ts +0 -253
- package/lib/aptos/tests/types/soffl3.js.map +1 -1
- package/lib/aptos/tests/types/souffle.d.ts +0 -100
- package/lib/aptos/tests/types/souffle.js.map +1 -1
- package/lib/eth/provider.js +5 -0
- package/lib/eth/provider.js.map +1 -1
- package/package.json +5 -5
- package/src/aptos/builtin/0x1.ts +0 -226
- package/src/aptos/builtin/0x3.ts +0 -82
- package/src/aptos/codegen/codegen.ts +0 -4
- package/src/aptos/models.ts +0 -12
- package/src/aptos/move-coder.ts +0 -2
- package/src/aptos/tests/types/reserved.ts +0 -100
- package/src/aptos/tests/types/soffl3.ts +0 -253
- package/src/aptos/tests/types/souffle.ts +0 -100
- package/src/eth/provider.ts +6 -0
package/src/aptos/builtin/0x1.ts
CHANGED
|
@@ -134,8 +134,6 @@ export namespace code {
|
|
|
134
134
|
|
|
135
135
|
export interface PublishPackageTxnPayload
|
|
136
136
|
extends TypedEntryFunctionPayload<[string, string[]]> {
|
|
137
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
138
|
-
arguments_typed: [string, string[]];
|
|
139
137
|
arguments_decoded: [string, string[]];
|
|
140
138
|
type_arguments: [];
|
|
141
139
|
}
|
|
@@ -292,8 +290,6 @@ export namespace coin {
|
|
|
292
290
|
|
|
293
291
|
export interface DepositEventInstance
|
|
294
292
|
extends TypedEventInstance<DepositEvent> {
|
|
295
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
296
|
-
data_typed: DepositEvent;
|
|
297
293
|
data_decoded: DepositEvent;
|
|
298
294
|
type_arguments: [];
|
|
299
295
|
}
|
|
@@ -320,40 +316,30 @@ export namespace coin {
|
|
|
320
316
|
|
|
321
317
|
export interface WithdrawEventInstance
|
|
322
318
|
extends TypedEventInstance<WithdrawEvent> {
|
|
323
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
324
|
-
data_typed: WithdrawEvent;
|
|
325
319
|
data_decoded: WithdrawEvent;
|
|
326
320
|
type_arguments: [];
|
|
327
321
|
}
|
|
328
322
|
|
|
329
323
|
export interface FreezeCoinStorePayload<T0 = any>
|
|
330
324
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
331
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
332
|
-
arguments_typed: [Address, Address];
|
|
333
325
|
arguments_decoded: [Address, Address];
|
|
334
326
|
type_arguments: [string];
|
|
335
327
|
}
|
|
336
328
|
|
|
337
329
|
export interface TransferPayload<T0 = any>
|
|
338
330
|
extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
339
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
340
|
-
arguments_typed: [Address, bigint];
|
|
341
331
|
arguments_decoded: [Address, bigint];
|
|
342
332
|
type_arguments: [string];
|
|
343
333
|
}
|
|
344
334
|
|
|
345
335
|
export interface UnfreezeCoinStorePayload<T0 = any>
|
|
346
336
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
347
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
348
|
-
arguments_typed: [Address, Address];
|
|
349
337
|
arguments_decoded: [Address, Address];
|
|
350
338
|
type_arguments: [string];
|
|
351
339
|
}
|
|
352
340
|
|
|
353
341
|
export interface UpgradeSupplyPayload<T0 = any>
|
|
354
342
|
extends TypedEntryFunctionPayload<[]> {
|
|
355
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
356
|
-
arguments_typed: [];
|
|
357
343
|
arguments_decoded: [];
|
|
358
344
|
type_arguments: [string];
|
|
359
345
|
}
|
|
@@ -476,8 +462,6 @@ export namespace block {
|
|
|
476
462
|
|
|
477
463
|
export interface NewBlockEventInstance
|
|
478
464
|
extends TypedEventInstance<NewBlockEvent> {
|
|
479
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
480
|
-
data_typed: NewBlockEvent;
|
|
481
465
|
data_decoded: NewBlockEvent;
|
|
482
466
|
type_arguments: [];
|
|
483
467
|
}
|
|
@@ -490,8 +474,6 @@ export namespace block {
|
|
|
490
474
|
|
|
491
475
|
export interface UpdateEpochIntervalEventInstance
|
|
492
476
|
extends TypedEventInstance<UpdateEpochIntervalEvent> {
|
|
493
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
494
|
-
data_typed: UpdateEpochIntervalEvent;
|
|
495
477
|
data_decoded: UpdateEpochIntervalEvent;
|
|
496
478
|
type_arguments: [];
|
|
497
479
|
}
|
|
@@ -964,8 +946,6 @@ export namespace stake {
|
|
|
964
946
|
|
|
965
947
|
export interface AddStakeEventInstance
|
|
966
948
|
extends TypedEventInstance<AddStakeEvent> {
|
|
967
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
968
|
-
data_typed: AddStakeEvent;
|
|
969
949
|
data_decoded: AddStakeEvent;
|
|
970
950
|
type_arguments: [];
|
|
971
951
|
}
|
|
@@ -988,8 +968,6 @@ export namespace stake {
|
|
|
988
968
|
|
|
989
969
|
export interface DistributeRewardsEventInstance
|
|
990
970
|
extends TypedEventInstance<DistributeRewardsEvent> {
|
|
991
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
992
|
-
data_typed: DistributeRewardsEvent;
|
|
993
971
|
data_decoded: DistributeRewardsEvent;
|
|
994
972
|
type_arguments: [];
|
|
995
973
|
}
|
|
@@ -1003,8 +981,6 @@ export namespace stake {
|
|
|
1003
981
|
|
|
1004
982
|
export interface IncreaseLockupEventInstance
|
|
1005
983
|
extends TypedEventInstance<IncreaseLockupEvent> {
|
|
1006
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1007
|
-
data_typed: IncreaseLockupEvent;
|
|
1008
984
|
data_decoded: IncreaseLockupEvent;
|
|
1009
985
|
type_arguments: [];
|
|
1010
986
|
}
|
|
@@ -1022,8 +998,6 @@ export namespace stake {
|
|
|
1022
998
|
|
|
1023
999
|
export interface JoinValidatorSetEventInstance
|
|
1024
1000
|
extends TypedEventInstance<JoinValidatorSetEvent> {
|
|
1025
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1026
|
-
data_typed: JoinValidatorSetEvent;
|
|
1027
1001
|
data_decoded: JoinValidatorSetEvent;
|
|
1028
1002
|
type_arguments: [];
|
|
1029
1003
|
}
|
|
@@ -1035,8 +1009,6 @@ export namespace stake {
|
|
|
1035
1009
|
|
|
1036
1010
|
export interface LeaveValidatorSetEventInstance
|
|
1037
1011
|
extends TypedEventInstance<LeaveValidatorSetEvent> {
|
|
1038
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1039
|
-
data_typed: LeaveValidatorSetEvent;
|
|
1040
1012
|
data_decoded: LeaveValidatorSetEvent;
|
|
1041
1013
|
type_arguments: [];
|
|
1042
1014
|
}
|
|
@@ -1054,8 +1026,6 @@ export namespace stake {
|
|
|
1054
1026
|
|
|
1055
1027
|
export interface ReactivateStakeEventInstance
|
|
1056
1028
|
extends TypedEventInstance<ReactivateStakeEvent> {
|
|
1057
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1058
|
-
data_typed: ReactivateStakeEvent;
|
|
1059
1029
|
data_decoded: ReactivateStakeEvent;
|
|
1060
1030
|
type_arguments: [];
|
|
1061
1031
|
}
|
|
@@ -1067,8 +1037,6 @@ export namespace stake {
|
|
|
1067
1037
|
|
|
1068
1038
|
export interface RegisterValidatorCandidateEventInstance
|
|
1069
1039
|
extends TypedEventInstance<RegisterValidatorCandidateEvent> {
|
|
1070
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1071
|
-
data_typed: RegisterValidatorCandidateEvent;
|
|
1072
1040
|
data_decoded: RegisterValidatorCandidateEvent;
|
|
1073
1041
|
type_arguments: [];
|
|
1074
1042
|
}
|
|
@@ -1082,8 +1050,6 @@ export namespace stake {
|
|
|
1082
1050
|
|
|
1083
1051
|
export interface RotateConsensusKeyEventInstance
|
|
1084
1052
|
extends TypedEventInstance<RotateConsensusKeyEvent> {
|
|
1085
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1086
|
-
data_typed: RotateConsensusKeyEvent;
|
|
1087
1053
|
data_decoded: RotateConsensusKeyEvent;
|
|
1088
1054
|
type_arguments: [];
|
|
1089
1055
|
}
|
|
@@ -1097,8 +1063,6 @@ export namespace stake {
|
|
|
1097
1063
|
|
|
1098
1064
|
export interface SetOperatorEventInstance
|
|
1099
1065
|
extends TypedEventInstance<SetOperatorEvent> {
|
|
1100
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1101
|
-
data_typed: SetOperatorEvent;
|
|
1102
1066
|
data_decoded: SetOperatorEvent;
|
|
1103
1067
|
type_arguments: [];
|
|
1104
1068
|
}
|
|
@@ -1134,8 +1098,6 @@ export namespace stake {
|
|
|
1134
1098
|
|
|
1135
1099
|
export interface UnlockStakeEventInstance
|
|
1136
1100
|
extends TypedEventInstance<UnlockStakeEvent> {
|
|
1137
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1138
|
-
data_typed: UnlockStakeEvent;
|
|
1139
1101
|
data_decoded: UnlockStakeEvent;
|
|
1140
1102
|
type_arguments: [];
|
|
1141
1103
|
}
|
|
@@ -1151,8 +1113,6 @@ export namespace stake {
|
|
|
1151
1113
|
|
|
1152
1114
|
export interface UpdateNetworkAndFullnodeAddressesEventInstance
|
|
1153
1115
|
extends TypedEventInstance<UpdateNetworkAndFullnodeAddressesEvent> {
|
|
1154
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1155
|
-
data_typed: UpdateNetworkAndFullnodeAddressesEvent;
|
|
1156
1116
|
data_decoded: UpdateNetworkAndFullnodeAddressesEvent;
|
|
1157
1117
|
type_arguments: [];
|
|
1158
1118
|
}
|
|
@@ -1195,108 +1155,80 @@ export namespace stake {
|
|
|
1195
1155
|
|
|
1196
1156
|
export interface WithdrawStakeEventInstance
|
|
1197
1157
|
extends TypedEventInstance<WithdrawStakeEvent> {
|
|
1198
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1199
|
-
data_typed: WithdrawStakeEvent;
|
|
1200
1158
|
data_decoded: WithdrawStakeEvent;
|
|
1201
1159
|
type_arguments: [];
|
|
1202
1160
|
}
|
|
1203
1161
|
|
|
1204
1162
|
export interface AddStakePayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
1205
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1206
|
-
arguments_typed: [bigint];
|
|
1207
1163
|
arguments_decoded: [bigint];
|
|
1208
1164
|
type_arguments: [];
|
|
1209
1165
|
}
|
|
1210
1166
|
|
|
1211
1167
|
export interface IncreaseLockupPayload extends TypedEntryFunctionPayload<[]> {
|
|
1212
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1213
|
-
arguments_typed: [];
|
|
1214
1168
|
arguments_decoded: [];
|
|
1215
1169
|
type_arguments: [];
|
|
1216
1170
|
}
|
|
1217
1171
|
|
|
1218
1172
|
export interface InitializeStakeOwnerPayload
|
|
1219
1173
|
extends TypedEntryFunctionPayload<[bigint, Address, Address]> {
|
|
1220
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1221
|
-
arguments_typed: [bigint, Address, Address];
|
|
1222
1174
|
arguments_decoded: [bigint, Address, Address];
|
|
1223
1175
|
type_arguments: [];
|
|
1224
1176
|
}
|
|
1225
1177
|
|
|
1226
1178
|
export interface InitializeValidatorPayload
|
|
1227
1179
|
extends TypedEntryFunctionPayload<[string, string, string, string]> {
|
|
1228
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1229
|
-
arguments_typed: [string, string, string, string];
|
|
1230
1180
|
arguments_decoded: [string, string, string, string];
|
|
1231
1181
|
type_arguments: [];
|
|
1232
1182
|
}
|
|
1233
1183
|
|
|
1234
1184
|
export interface JoinValidatorSetPayload
|
|
1235
1185
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
1236
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1237
|
-
arguments_typed: [Address];
|
|
1238
1186
|
arguments_decoded: [Address];
|
|
1239
1187
|
type_arguments: [];
|
|
1240
1188
|
}
|
|
1241
1189
|
|
|
1242
1190
|
export interface LeaveValidatorSetPayload
|
|
1243
1191
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
1244
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1245
|
-
arguments_typed: [Address];
|
|
1246
1192
|
arguments_decoded: [Address];
|
|
1247
1193
|
type_arguments: [];
|
|
1248
1194
|
}
|
|
1249
1195
|
|
|
1250
1196
|
export interface ReactivateStakePayload
|
|
1251
1197
|
extends TypedEntryFunctionPayload<[bigint]> {
|
|
1252
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1253
|
-
arguments_typed: [bigint];
|
|
1254
1198
|
arguments_decoded: [bigint];
|
|
1255
1199
|
type_arguments: [];
|
|
1256
1200
|
}
|
|
1257
1201
|
|
|
1258
1202
|
export interface RotateConsensusKeyPayload
|
|
1259
1203
|
extends TypedEntryFunctionPayload<[Address, string, string]> {
|
|
1260
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1261
|
-
arguments_typed: [Address, string, string];
|
|
1262
1204
|
arguments_decoded: [Address, string, string];
|
|
1263
1205
|
type_arguments: [];
|
|
1264
1206
|
}
|
|
1265
1207
|
|
|
1266
1208
|
export interface SetDelegatedVoterPayload
|
|
1267
1209
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
1268
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1269
|
-
arguments_typed: [Address];
|
|
1270
1210
|
arguments_decoded: [Address];
|
|
1271
1211
|
type_arguments: [];
|
|
1272
1212
|
}
|
|
1273
1213
|
|
|
1274
1214
|
export interface SetOperatorPayload
|
|
1275
1215
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
1276
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1277
|
-
arguments_typed: [Address];
|
|
1278
1216
|
arguments_decoded: [Address];
|
|
1279
1217
|
type_arguments: [];
|
|
1280
1218
|
}
|
|
1281
1219
|
|
|
1282
1220
|
export interface UnlockPayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
1283
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1284
|
-
arguments_typed: [bigint];
|
|
1285
1221
|
arguments_decoded: [bigint];
|
|
1286
1222
|
type_arguments: [];
|
|
1287
1223
|
}
|
|
1288
1224
|
|
|
1289
1225
|
export interface UpdateNetworkAndFullnodeAddressesPayload
|
|
1290
1226
|
extends TypedEntryFunctionPayload<[Address, string, string]> {
|
|
1291
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1292
|
-
arguments_typed: [Address, string, string];
|
|
1293
1227
|
arguments_decoded: [Address, string, string];
|
|
1294
1228
|
type_arguments: [];
|
|
1295
1229
|
}
|
|
1296
1230
|
|
|
1297
1231
|
export interface WithdrawPayload extends TypedEntryFunctionPayload<[bigint]> {
|
|
1298
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1299
|
-
arguments_typed: [bigint];
|
|
1300
1232
|
arguments_decoded: [bigint];
|
|
1301
1233
|
type_arguments: [];
|
|
1302
1234
|
}
|
|
@@ -1473,8 +1405,6 @@ export namespace voting {
|
|
|
1473
1405
|
|
|
1474
1406
|
export interface CreateProposalEventInstance
|
|
1475
1407
|
extends TypedEventInstance<CreateProposalEvent> {
|
|
1476
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1477
|
-
data_typed: CreateProposalEvent;
|
|
1478
1408
|
data_decoded: CreateProposalEvent;
|
|
1479
1409
|
type_arguments: [];
|
|
1480
1410
|
}
|
|
@@ -1503,8 +1433,6 @@ export namespace voting {
|
|
|
1503
1433
|
|
|
1504
1434
|
export interface RegisterForumEventInstance
|
|
1505
1435
|
extends TypedEventInstance<RegisterForumEvent> {
|
|
1506
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1507
|
-
data_typed: RegisterForumEvent;
|
|
1508
1436
|
data_decoded: RegisterForumEvent;
|
|
1509
1437
|
type_arguments: [];
|
|
1510
1438
|
}
|
|
@@ -1519,8 +1447,6 @@ export namespace voting {
|
|
|
1519
1447
|
|
|
1520
1448
|
export interface ResolveProposalInstance
|
|
1521
1449
|
extends TypedEventInstance<ResolveProposal> {
|
|
1522
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1523
|
-
data_typed: ResolveProposal;
|
|
1524
1450
|
data_decoded: ResolveProposal;
|
|
1525
1451
|
type_arguments: [];
|
|
1526
1452
|
}
|
|
@@ -1532,8 +1458,6 @@ export namespace voting {
|
|
|
1532
1458
|
}
|
|
1533
1459
|
|
|
1534
1460
|
export interface VoteEventInstance extends TypedEventInstance<VoteEvent> {
|
|
1535
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1536
|
-
data_typed: VoteEvent;
|
|
1537
1461
|
data_decoded: VoteEvent;
|
|
1538
1462
|
type_arguments: [];
|
|
1539
1463
|
}
|
|
@@ -1688,8 +1612,6 @@ export namespace account {
|
|
|
1688
1612
|
|
|
1689
1613
|
export interface CoinRegisterEventInstance
|
|
1690
1614
|
extends TypedEventInstance<CoinRegisterEvent> {
|
|
1691
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1692
|
-
data_typed: CoinRegisterEvent;
|
|
1693
1615
|
data_decoded: CoinRegisterEvent;
|
|
1694
1616
|
type_arguments: [];
|
|
1695
1617
|
}
|
|
@@ -1702,8 +1624,6 @@ export namespace account {
|
|
|
1702
1624
|
|
|
1703
1625
|
export interface KeyRotationEventInstance
|
|
1704
1626
|
extends TypedEventInstance<KeyRotationEvent> {
|
|
1705
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
1706
|
-
data_typed: KeyRotationEvent;
|
|
1707
1627
|
data_decoded: KeyRotationEvent;
|
|
1708
1628
|
type_arguments: [];
|
|
1709
1629
|
}
|
|
@@ -1752,16 +1672,12 @@ export namespace account {
|
|
|
1752
1672
|
|
|
1753
1673
|
export interface OfferSignerCapabilityPayload
|
|
1754
1674
|
extends TypedEntryFunctionPayload<[string, number, string, Address]> {
|
|
1755
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1756
|
-
arguments_typed: [string, number, string, Address];
|
|
1757
1675
|
arguments_decoded: [string, number, string, Address];
|
|
1758
1676
|
type_arguments: [];
|
|
1759
1677
|
}
|
|
1760
1678
|
|
|
1761
1679
|
export interface RevokeSignerCapabilityPayload
|
|
1762
1680
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
1763
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1764
|
-
arguments_typed: [Address];
|
|
1765
1681
|
arguments_decoded: [Address];
|
|
1766
1682
|
type_arguments: [];
|
|
1767
1683
|
}
|
|
@@ -1770,8 +1686,6 @@ export namespace account {
|
|
|
1770
1686
|
extends TypedEntryFunctionPayload<
|
|
1771
1687
|
[number, string, number, string, string, string]
|
|
1772
1688
|
> {
|
|
1773
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1774
|
-
arguments_typed: [number, string, number, string, string, string];
|
|
1775
1689
|
arguments_decoded: [number, string, number, string, string, string];
|
|
1776
1690
|
type_arguments: [];
|
|
1777
1691
|
}
|
|
@@ -1913,8 +1827,6 @@ export namespace version {
|
|
|
1913
1827
|
|
|
1914
1828
|
export interface SetVersionPayload
|
|
1915
1829
|
extends TypedEntryFunctionPayload<[bigint]> {
|
|
1916
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
1917
|
-
arguments_typed: [bigint];
|
|
1918
1830
|
arguments_decoded: [bigint];
|
|
1919
1831
|
type_arguments: [];
|
|
1920
1832
|
}
|
|
@@ -2334,8 +2246,6 @@ export namespace vesting {
|
|
|
2334
2246
|
|
|
2335
2247
|
export interface AdminWithdrawEventInstance
|
|
2336
2248
|
extends TypedEventInstance<AdminWithdrawEvent> {
|
|
2337
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2338
|
-
data_typed: AdminWithdrawEvent;
|
|
2339
2249
|
data_decoded: AdminWithdrawEvent;
|
|
2340
2250
|
type_arguments: [];
|
|
2341
2251
|
}
|
|
@@ -2353,8 +2263,6 @@ export namespace vesting {
|
|
|
2353
2263
|
|
|
2354
2264
|
export interface CreateVestingContractEventInstance
|
|
2355
2265
|
extends TypedEventInstance<CreateVestingContractEvent> {
|
|
2356
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2357
|
-
data_typed: CreateVestingContractEvent;
|
|
2358
2266
|
data_decoded: CreateVestingContractEvent;
|
|
2359
2267
|
type_arguments: [];
|
|
2360
2268
|
}
|
|
@@ -2368,8 +2276,6 @@ export namespace vesting {
|
|
|
2368
2276
|
|
|
2369
2277
|
export interface DistributeEventInstance
|
|
2370
2278
|
extends TypedEventInstance<DistributeEvent> {
|
|
2371
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2372
|
-
data_typed: DistributeEvent;
|
|
2373
2279
|
data_decoded: DistributeEvent;
|
|
2374
2280
|
type_arguments: [];
|
|
2375
2281
|
}
|
|
@@ -2384,8 +2290,6 @@ export namespace vesting {
|
|
|
2384
2290
|
|
|
2385
2291
|
export interface ResetLockupEventInstance
|
|
2386
2292
|
extends TypedEventInstance<ResetLockupEvent> {
|
|
2387
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2388
|
-
data_typed: ResetLockupEvent;
|
|
2389
2293
|
data_decoded: ResetLockupEvent;
|
|
2390
2294
|
type_arguments: [];
|
|
2391
2295
|
}
|
|
@@ -2401,8 +2305,6 @@ export namespace vesting {
|
|
|
2401
2305
|
|
|
2402
2306
|
export interface SetBeneficiaryEventInstance
|
|
2403
2307
|
extends TypedEventInstance<SetBeneficiaryEvent> {
|
|
2404
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2405
|
-
data_typed: SetBeneficiaryEvent;
|
|
2406
2308
|
data_decoded: SetBeneficiaryEvent;
|
|
2407
2309
|
type_arguments: [];
|
|
2408
2310
|
}
|
|
@@ -2423,8 +2325,6 @@ export namespace vesting {
|
|
|
2423
2325
|
|
|
2424
2326
|
export interface TerminateEventInstance
|
|
2425
2327
|
extends TypedEventInstance<TerminateEvent> {
|
|
2426
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2427
|
-
data_typed: TerminateEvent;
|
|
2428
2328
|
data_decoded: TerminateEvent;
|
|
2429
2329
|
type_arguments: [];
|
|
2430
2330
|
}
|
|
@@ -2439,8 +2339,6 @@ export namespace vesting {
|
|
|
2439
2339
|
|
|
2440
2340
|
export interface UnlockRewardsEventInstance
|
|
2441
2341
|
extends TypedEventInstance<UnlockRewardsEvent> {
|
|
2442
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2443
|
-
data_typed: UnlockRewardsEvent;
|
|
2444
2342
|
data_decoded: UnlockRewardsEvent;
|
|
2445
2343
|
type_arguments: [];
|
|
2446
2344
|
}
|
|
@@ -2457,8 +2355,6 @@ export namespace vesting {
|
|
|
2457
2355
|
|
|
2458
2356
|
export interface UpdateOperatorEventInstance
|
|
2459
2357
|
extends TypedEventInstance<UpdateOperatorEvent> {
|
|
2460
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2461
|
-
data_typed: UpdateOperatorEvent;
|
|
2462
2358
|
data_decoded: UpdateOperatorEvent;
|
|
2463
2359
|
type_arguments: [];
|
|
2464
2360
|
}
|
|
@@ -2474,8 +2370,6 @@ export namespace vesting {
|
|
|
2474
2370
|
|
|
2475
2371
|
export interface UpdateVoterEventInstance
|
|
2476
2372
|
extends TypedEventInstance<UpdateVoterEvent> {
|
|
2477
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2478
|
-
data_typed: UpdateVoterEvent;
|
|
2479
2373
|
data_decoded: UpdateVoterEvent;
|
|
2480
2374
|
type_arguments: [];
|
|
2481
2375
|
}
|
|
@@ -2490,8 +2384,6 @@ export namespace vesting {
|
|
|
2490
2384
|
}
|
|
2491
2385
|
|
|
2492
2386
|
export interface VestEventInstance extends TypedEventInstance<VestEvent> {
|
|
2493
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
2494
|
-
data_typed: VestEvent;
|
|
2495
2387
|
data_decoded: VestEvent;
|
|
2496
2388
|
type_arguments: [];
|
|
2497
2389
|
}
|
|
@@ -2533,103 +2425,77 @@ export namespace vesting {
|
|
|
2533
2425
|
|
|
2534
2426
|
export interface AdminWithdrawPayload
|
|
2535
2427
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
2536
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2537
|
-
arguments_typed: [Address];
|
|
2538
2428
|
arguments_decoded: [Address];
|
|
2539
2429
|
type_arguments: [];
|
|
2540
2430
|
}
|
|
2541
2431
|
|
|
2542
2432
|
export interface DistributePayload
|
|
2543
2433
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
2544
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2545
|
-
arguments_typed: [Address];
|
|
2546
2434
|
arguments_decoded: [Address];
|
|
2547
2435
|
type_arguments: [];
|
|
2548
2436
|
}
|
|
2549
2437
|
|
|
2550
2438
|
export interface ResetBeneficiaryPayload
|
|
2551
2439
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2552
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2553
|
-
arguments_typed: [Address, Address];
|
|
2554
2440
|
arguments_decoded: [Address, Address];
|
|
2555
2441
|
type_arguments: [];
|
|
2556
2442
|
}
|
|
2557
2443
|
|
|
2558
2444
|
export interface ResetLockupPayload
|
|
2559
2445
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
2560
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2561
|
-
arguments_typed: [Address];
|
|
2562
2446
|
arguments_decoded: [Address];
|
|
2563
2447
|
type_arguments: [];
|
|
2564
2448
|
}
|
|
2565
2449
|
|
|
2566
2450
|
export interface SetBeneficiaryPayload
|
|
2567
2451
|
extends TypedEntryFunctionPayload<[Address, Address, Address]> {
|
|
2568
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2569
|
-
arguments_typed: [Address, Address, Address];
|
|
2570
2452
|
arguments_decoded: [Address, Address, Address];
|
|
2571
2453
|
type_arguments: [];
|
|
2572
2454
|
}
|
|
2573
2455
|
|
|
2574
2456
|
export interface SetBeneficiaryResetterPayload
|
|
2575
2457
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2576
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2577
|
-
arguments_typed: [Address, Address];
|
|
2578
2458
|
arguments_decoded: [Address, Address];
|
|
2579
2459
|
type_arguments: [];
|
|
2580
2460
|
}
|
|
2581
2461
|
|
|
2582
2462
|
export interface SetManagementRolePayload
|
|
2583
2463
|
extends TypedEntryFunctionPayload<[Address, string, Address]> {
|
|
2584
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2585
|
-
arguments_typed: [Address, string, Address];
|
|
2586
2464
|
arguments_decoded: [Address, string, Address];
|
|
2587
2465
|
type_arguments: [];
|
|
2588
2466
|
}
|
|
2589
2467
|
|
|
2590
2468
|
export interface TerminateVestingContractPayload
|
|
2591
2469
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
2592
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2593
|
-
arguments_typed: [Address];
|
|
2594
2470
|
arguments_decoded: [Address];
|
|
2595
2471
|
type_arguments: [];
|
|
2596
2472
|
}
|
|
2597
2473
|
|
|
2598
2474
|
export interface UnlockRewardsPayload
|
|
2599
2475
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
2600
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2601
|
-
arguments_typed: [Address];
|
|
2602
2476
|
arguments_decoded: [Address];
|
|
2603
2477
|
type_arguments: [];
|
|
2604
2478
|
}
|
|
2605
2479
|
|
|
2606
2480
|
export interface UpdateOperatorPayload
|
|
2607
2481
|
extends TypedEntryFunctionPayload<[Address, Address, bigint]> {
|
|
2608
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2609
|
-
arguments_typed: [Address, Address, bigint];
|
|
2610
2482
|
arguments_decoded: [Address, Address, bigint];
|
|
2611
2483
|
type_arguments: [];
|
|
2612
2484
|
}
|
|
2613
2485
|
|
|
2614
2486
|
export interface UpdateOperatorWithSameCommissionPayload
|
|
2615
2487
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2616
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2617
|
-
arguments_typed: [Address, Address];
|
|
2618
2488
|
arguments_decoded: [Address, Address];
|
|
2619
2489
|
type_arguments: [];
|
|
2620
2490
|
}
|
|
2621
2491
|
|
|
2622
2492
|
export interface UpdateVoterPayload
|
|
2623
2493
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2624
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2625
|
-
arguments_typed: [Address, Address];
|
|
2626
2494
|
arguments_decoded: [Address, Address];
|
|
2627
2495
|
type_arguments: [];
|
|
2628
2496
|
}
|
|
2629
2497
|
|
|
2630
2498
|
export interface VestPayload extends TypedEntryFunctionPayload<[Address]> {
|
|
2631
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2632
|
-
arguments_typed: [Address];
|
|
2633
2499
|
arguments_decoded: [Address];
|
|
2634
2500
|
type_arguments: [];
|
|
2635
2501
|
}
|
|
@@ -2897,24 +2763,18 @@ export namespace aptos_coin {
|
|
|
2897
2763
|
|
|
2898
2764
|
export interface ClaimMintCapabilityPayload
|
|
2899
2765
|
extends TypedEntryFunctionPayload<[]> {
|
|
2900
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2901
|
-
arguments_typed: [];
|
|
2902
2766
|
arguments_decoded: [];
|
|
2903
2767
|
type_arguments: [];
|
|
2904
2768
|
}
|
|
2905
2769
|
|
|
2906
2770
|
export interface DelegateMintCapabilityPayload
|
|
2907
2771
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
2908
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2909
|
-
arguments_typed: [Address, Address];
|
|
2910
2772
|
arguments_decoded: [Address, Address];
|
|
2911
2773
|
type_arguments: [];
|
|
2912
2774
|
}
|
|
2913
2775
|
|
|
2914
2776
|
export interface MintPayload
|
|
2915
2777
|
extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
2916
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
2917
|
-
arguments_typed: [Address, bigint];
|
|
2918
2778
|
arguments_decoded: [Address, bigint];
|
|
2919
2779
|
type_arguments: [];
|
|
2920
2780
|
}
|
|
@@ -3207,32 +3067,24 @@ export namespace managed_coin {
|
|
|
3207
3067
|
|
|
3208
3068
|
export interface BurnPayload<T0 = any>
|
|
3209
3069
|
extends TypedEntryFunctionPayload<[bigint]> {
|
|
3210
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3211
|
-
arguments_typed: [bigint];
|
|
3212
3070
|
arguments_decoded: [bigint];
|
|
3213
3071
|
type_arguments: [string];
|
|
3214
3072
|
}
|
|
3215
3073
|
|
|
3216
3074
|
export interface InitializePayload<T0 = any>
|
|
3217
3075
|
extends TypedEntryFunctionPayload<[string, string, number, Boolean]> {
|
|
3218
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3219
|
-
arguments_typed: [string, string, number, Boolean];
|
|
3220
3076
|
arguments_decoded: [string, string, number, Boolean];
|
|
3221
3077
|
type_arguments: [string];
|
|
3222
3078
|
}
|
|
3223
3079
|
|
|
3224
3080
|
export interface MintPayload<T0 = any>
|
|
3225
3081
|
extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
3226
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3227
|
-
arguments_typed: [Address, bigint];
|
|
3228
3082
|
arguments_decoded: [Address, bigint];
|
|
3229
3083
|
type_arguments: [string];
|
|
3230
3084
|
}
|
|
3231
3085
|
|
|
3232
3086
|
export interface RegisterPayload<T0 = any>
|
|
3233
3087
|
extends TypedEntryFunctionPayload<[]> {
|
|
3234
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3235
|
-
arguments_typed: [];
|
|
3236
3088
|
arguments_decoded: [];
|
|
3237
3089
|
type_arguments: [string];
|
|
3238
3090
|
}
|
|
@@ -3322,16 +3174,12 @@ export class aptos_account extends AptosBaseProcessor {
|
|
|
3322
3174
|
export namespace aptos_account {
|
|
3323
3175
|
export interface CreateAccountPayload
|
|
3324
3176
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
3325
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3326
|
-
arguments_typed: [Address];
|
|
3327
3177
|
arguments_decoded: [Address];
|
|
3328
3178
|
type_arguments: [];
|
|
3329
3179
|
}
|
|
3330
3180
|
|
|
3331
3181
|
export interface TransferPayload
|
|
3332
3182
|
extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
3333
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3334
|
-
arguments_typed: [Address, bigint];
|
|
3335
3183
|
arguments_decoded: [Address, bigint];
|
|
3336
3184
|
type_arguments: [];
|
|
3337
3185
|
}
|
|
@@ -3549,64 +3397,48 @@ export class staking_proxy extends AptosBaseProcessor {
|
|
|
3549
3397
|
export namespace staking_proxy {
|
|
3550
3398
|
export interface SetOperatorPayload
|
|
3551
3399
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
3552
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3553
|
-
arguments_typed: [Address, Address];
|
|
3554
3400
|
arguments_decoded: [Address, Address];
|
|
3555
3401
|
type_arguments: [];
|
|
3556
3402
|
}
|
|
3557
3403
|
|
|
3558
3404
|
export interface SetStakePoolOperatorPayload
|
|
3559
3405
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
3560
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3561
|
-
arguments_typed: [Address];
|
|
3562
3406
|
arguments_decoded: [Address];
|
|
3563
3407
|
type_arguments: [];
|
|
3564
3408
|
}
|
|
3565
3409
|
|
|
3566
3410
|
export interface SetStakePoolVoterPayload
|
|
3567
3411
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
3568
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3569
|
-
arguments_typed: [Address];
|
|
3570
3412
|
arguments_decoded: [Address];
|
|
3571
3413
|
type_arguments: [];
|
|
3572
3414
|
}
|
|
3573
3415
|
|
|
3574
3416
|
export interface SetStakingContractOperatorPayload
|
|
3575
3417
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
3576
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3577
|
-
arguments_typed: [Address, Address];
|
|
3578
3418
|
arguments_decoded: [Address, Address];
|
|
3579
3419
|
type_arguments: [];
|
|
3580
3420
|
}
|
|
3581
3421
|
|
|
3582
3422
|
export interface SetStakingContractVoterPayload
|
|
3583
3423
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
3584
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3585
|
-
arguments_typed: [Address, Address];
|
|
3586
3424
|
arguments_decoded: [Address, Address];
|
|
3587
3425
|
type_arguments: [];
|
|
3588
3426
|
}
|
|
3589
3427
|
|
|
3590
3428
|
export interface SetVestingContractOperatorPayload
|
|
3591
3429
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
3592
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3593
|
-
arguments_typed: [Address, Address];
|
|
3594
3430
|
arguments_decoded: [Address, Address];
|
|
3595
3431
|
type_arguments: [];
|
|
3596
3432
|
}
|
|
3597
3433
|
|
|
3598
3434
|
export interface SetVestingContractVoterPayload
|
|
3599
3435
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
3600
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3601
|
-
arguments_typed: [Address, Address];
|
|
3602
3436
|
arguments_decoded: [Address, Address];
|
|
3603
3437
|
type_arguments: [];
|
|
3604
3438
|
}
|
|
3605
3439
|
|
|
3606
3440
|
export interface SetVoterPayload
|
|
3607
3441
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
3608
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3609
|
-
arguments_typed: [Address, Address];
|
|
3610
3442
|
arguments_decoded: [Address, Address];
|
|
3611
3443
|
type_arguments: [];
|
|
3612
3444
|
}
|
|
@@ -3723,8 +3555,6 @@ export namespace reconfiguration {
|
|
|
3723
3555
|
|
|
3724
3556
|
export interface NewEpochEventInstance
|
|
3725
3557
|
extends TypedEventInstance<NewEpochEvent> {
|
|
3726
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
3727
|
-
data_typed: NewEpochEvent;
|
|
3728
3558
|
data_decoded: NewEpochEvent;
|
|
3729
3559
|
type_arguments: [];
|
|
3730
3560
|
}
|
|
@@ -3894,8 +3724,6 @@ export namespace aptos_governance {
|
|
|
3894
3724
|
|
|
3895
3725
|
export interface CreateProposalEventInstance
|
|
3896
3726
|
extends TypedEventInstance<CreateProposalEvent> {
|
|
3897
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
3898
|
-
data_typed: CreateProposalEvent;
|
|
3899
3727
|
data_decoded: CreateProposalEvent;
|
|
3900
3728
|
type_arguments: [];
|
|
3901
3729
|
}
|
|
@@ -3934,8 +3762,6 @@ export namespace aptos_governance {
|
|
|
3934
3762
|
|
|
3935
3763
|
export interface UpdateConfigEventInstance
|
|
3936
3764
|
extends TypedEventInstance<UpdateConfigEvent> {
|
|
3937
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
3938
|
-
data_typed: UpdateConfigEvent;
|
|
3939
3765
|
data_decoded: UpdateConfigEvent;
|
|
3940
3766
|
type_arguments: [];
|
|
3941
3767
|
}
|
|
@@ -3950,8 +3776,6 @@ export namespace aptos_governance {
|
|
|
3950
3776
|
}
|
|
3951
3777
|
|
|
3952
3778
|
export interface VoteEventInstance extends TypedEventInstance<VoteEvent> {
|
|
3953
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
3954
|
-
data_typed: VoteEvent;
|
|
3955
3779
|
data_decoded: VoteEvent;
|
|
3956
3780
|
type_arguments: [];
|
|
3957
3781
|
}
|
|
@@ -3963,24 +3787,18 @@ export namespace aptos_governance {
|
|
|
3963
3787
|
|
|
3964
3788
|
export interface AddApprovedScriptHashScriptPayload
|
|
3965
3789
|
extends TypedEntryFunctionPayload<[bigint]> {
|
|
3966
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3967
|
-
arguments_typed: [bigint];
|
|
3968
3790
|
arguments_decoded: [bigint];
|
|
3969
3791
|
type_arguments: [];
|
|
3970
3792
|
}
|
|
3971
3793
|
|
|
3972
3794
|
export interface CreateProposalPayload
|
|
3973
3795
|
extends TypedEntryFunctionPayload<[Address, string, string, string]> {
|
|
3974
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3975
|
-
arguments_typed: [Address, string, string, string];
|
|
3976
3796
|
arguments_decoded: [Address, string, string, string];
|
|
3977
3797
|
type_arguments: [];
|
|
3978
3798
|
}
|
|
3979
3799
|
|
|
3980
3800
|
export interface VotePayload
|
|
3981
3801
|
extends TypedEntryFunctionPayload<[Address, bigint, Boolean]> {
|
|
3982
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
3983
|
-
arguments_typed: [Address, bigint, Boolean];
|
|
3984
3802
|
arguments_decoded: [Address, bigint, Boolean];
|
|
3985
3803
|
type_arguments: [];
|
|
3986
3804
|
}
|
|
@@ -4094,24 +3912,18 @@ export namespace resource_account {
|
|
|
4094
3912
|
|
|
4095
3913
|
export interface CreateResourceAccountPayload
|
|
4096
3914
|
extends TypedEntryFunctionPayload<[string, string]> {
|
|
4097
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4098
|
-
arguments_typed: [string, string];
|
|
4099
3915
|
arguments_decoded: [string, string];
|
|
4100
3916
|
type_arguments: [];
|
|
4101
3917
|
}
|
|
4102
3918
|
|
|
4103
3919
|
export interface CreateResourceAccountAndFundPayload
|
|
4104
3920
|
extends TypedEntryFunctionPayload<[string, string, bigint]> {
|
|
4105
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4106
|
-
arguments_typed: [string, string, bigint];
|
|
4107
3921
|
arguments_decoded: [string, string, bigint];
|
|
4108
3922
|
type_arguments: [];
|
|
4109
3923
|
}
|
|
4110
3924
|
|
|
4111
3925
|
export interface CreateResourceAccountAndPublishPackagePayload
|
|
4112
3926
|
extends TypedEntryFunctionPayload<[string, string, string[]]> {
|
|
4113
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4114
|
-
arguments_typed: [string, string, string[]];
|
|
4115
3927
|
arguments_decoded: [string, string, string[]];
|
|
4116
3928
|
type_arguments: [];
|
|
4117
3929
|
}
|
|
@@ -4492,8 +4304,6 @@ export namespace staking_contract {
|
|
|
4492
4304
|
|
|
4493
4305
|
export interface AddDistributionEventInstance
|
|
4494
4306
|
extends TypedEventInstance<AddDistributionEvent> {
|
|
4495
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4496
|
-
data_typed: AddDistributionEvent;
|
|
4497
4307
|
data_decoded: AddDistributionEvent;
|
|
4498
4308
|
type_arguments: [];
|
|
4499
4309
|
}
|
|
@@ -4507,8 +4317,6 @@ export namespace staking_contract {
|
|
|
4507
4317
|
|
|
4508
4318
|
export interface AddStakeEventInstance
|
|
4509
4319
|
extends TypedEventInstance<AddStakeEvent> {
|
|
4510
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4511
|
-
data_typed: AddStakeEvent;
|
|
4512
4320
|
data_decoded: AddStakeEvent;
|
|
4513
4321
|
type_arguments: [];
|
|
4514
4322
|
}
|
|
@@ -4524,8 +4332,6 @@ export namespace staking_contract {
|
|
|
4524
4332
|
|
|
4525
4333
|
export interface CreateStakingContractEventInstance
|
|
4526
4334
|
extends TypedEventInstance<CreateStakingContractEvent> {
|
|
4527
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4528
|
-
data_typed: CreateStakingContractEvent;
|
|
4529
4335
|
data_decoded: CreateStakingContractEvent;
|
|
4530
4336
|
type_arguments: [];
|
|
4531
4337
|
}
|
|
@@ -4540,8 +4346,6 @@ export namespace staking_contract {
|
|
|
4540
4346
|
|
|
4541
4347
|
export interface DistributeEventInstance
|
|
4542
4348
|
extends TypedEventInstance<DistributeEvent> {
|
|
4543
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4544
|
-
data_typed: DistributeEvent;
|
|
4545
4349
|
data_decoded: DistributeEvent;
|
|
4546
4350
|
type_arguments: [];
|
|
4547
4351
|
}
|
|
@@ -4556,8 +4360,6 @@ export namespace staking_contract {
|
|
|
4556
4360
|
|
|
4557
4361
|
export interface RequestCommissionEventInstance
|
|
4558
4362
|
extends TypedEventInstance<RequestCommissionEvent> {
|
|
4559
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4560
|
-
data_typed: RequestCommissionEvent;
|
|
4561
4363
|
data_decoded: RequestCommissionEvent;
|
|
4562
4364
|
type_arguments: [];
|
|
4563
4365
|
}
|
|
@@ -4570,8 +4372,6 @@ export namespace staking_contract {
|
|
|
4570
4372
|
|
|
4571
4373
|
export interface ResetLockupEventInstance
|
|
4572
4374
|
extends TypedEventInstance<ResetLockupEvent> {
|
|
4573
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4574
|
-
data_typed: ResetLockupEvent;
|
|
4575
4375
|
data_decoded: ResetLockupEvent;
|
|
4576
4376
|
type_arguments: [];
|
|
4577
4377
|
}
|
|
@@ -4612,8 +4412,6 @@ export namespace staking_contract {
|
|
|
4612
4412
|
|
|
4613
4413
|
export interface SwitchOperatorEventInstance
|
|
4614
4414
|
extends TypedEventInstance<SwitchOperatorEvent> {
|
|
4615
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4616
|
-
data_typed: SwitchOperatorEvent;
|
|
4617
4415
|
data_decoded: SwitchOperatorEvent;
|
|
4618
4416
|
type_arguments: [];
|
|
4619
4417
|
}
|
|
@@ -4628,8 +4426,6 @@ export namespace staking_contract {
|
|
|
4628
4426
|
|
|
4629
4427
|
export interface UnlockStakeEventInstance
|
|
4630
4428
|
extends TypedEventInstance<UnlockStakeEvent> {
|
|
4631
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4632
|
-
data_typed: UnlockStakeEvent;
|
|
4633
4429
|
data_decoded: UnlockStakeEvent;
|
|
4634
4430
|
type_arguments: [];
|
|
4635
4431
|
}
|
|
@@ -4644,16 +4440,12 @@ export namespace staking_contract {
|
|
|
4644
4440
|
|
|
4645
4441
|
export interface UpdateVoterEventInstance
|
|
4646
4442
|
extends TypedEventInstance<UpdateVoterEvent> {
|
|
4647
|
-
/** @deprecated use {@link data_decoded} instead */
|
|
4648
|
-
data_typed: UpdateVoterEvent;
|
|
4649
4443
|
data_decoded: UpdateVoterEvent;
|
|
4650
4444
|
type_arguments: [];
|
|
4651
4445
|
}
|
|
4652
4446
|
|
|
4653
4447
|
export interface AddStakePayload
|
|
4654
4448
|
extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
4655
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4656
|
-
arguments_typed: [Address, bigint];
|
|
4657
4449
|
arguments_decoded: [Address, bigint];
|
|
4658
4450
|
type_arguments: [];
|
|
4659
4451
|
}
|
|
@@ -4662,72 +4454,54 @@ export namespace staking_contract {
|
|
|
4662
4454
|
extends TypedEntryFunctionPayload<
|
|
4663
4455
|
[Address, Address, bigint, bigint, string]
|
|
4664
4456
|
> {
|
|
4665
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4666
|
-
arguments_typed: [Address, Address, bigint, bigint, string];
|
|
4667
4457
|
arguments_decoded: [Address, Address, bigint, bigint, string];
|
|
4668
4458
|
type_arguments: [];
|
|
4669
4459
|
}
|
|
4670
4460
|
|
|
4671
4461
|
export interface DistributePayload
|
|
4672
4462
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
4673
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4674
|
-
arguments_typed: [Address, Address];
|
|
4675
4463
|
arguments_decoded: [Address, Address];
|
|
4676
4464
|
type_arguments: [];
|
|
4677
4465
|
}
|
|
4678
4466
|
|
|
4679
4467
|
export interface RequestCommissionPayload
|
|
4680
4468
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
4681
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4682
|
-
arguments_typed: [Address, Address];
|
|
4683
4469
|
arguments_decoded: [Address, Address];
|
|
4684
4470
|
type_arguments: [];
|
|
4685
4471
|
}
|
|
4686
4472
|
|
|
4687
4473
|
export interface ResetLockupPayload
|
|
4688
4474
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
4689
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4690
|
-
arguments_typed: [Address];
|
|
4691
4475
|
arguments_decoded: [Address];
|
|
4692
4476
|
type_arguments: [];
|
|
4693
4477
|
}
|
|
4694
4478
|
|
|
4695
4479
|
export interface SwitchOperatorPayload
|
|
4696
4480
|
extends TypedEntryFunctionPayload<[Address, Address, bigint]> {
|
|
4697
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4698
|
-
arguments_typed: [Address, Address, bigint];
|
|
4699
4481
|
arguments_decoded: [Address, Address, bigint];
|
|
4700
4482
|
type_arguments: [];
|
|
4701
4483
|
}
|
|
4702
4484
|
|
|
4703
4485
|
export interface SwitchOperatorWithSameCommissionPayload
|
|
4704
4486
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
4705
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4706
|
-
arguments_typed: [Address, Address];
|
|
4707
4487
|
arguments_decoded: [Address, Address];
|
|
4708
4488
|
type_arguments: [];
|
|
4709
4489
|
}
|
|
4710
4490
|
|
|
4711
4491
|
export interface UnlockRewardsPayload
|
|
4712
4492
|
extends TypedEntryFunctionPayload<[Address]> {
|
|
4713
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4714
|
-
arguments_typed: [Address];
|
|
4715
4493
|
arguments_decoded: [Address];
|
|
4716
4494
|
type_arguments: [];
|
|
4717
4495
|
}
|
|
4718
4496
|
|
|
4719
4497
|
export interface UnlockStakePayload
|
|
4720
4498
|
extends TypedEntryFunctionPayload<[Address, bigint]> {
|
|
4721
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4722
|
-
arguments_typed: [Address, bigint];
|
|
4723
4499
|
arguments_decoded: [Address, bigint];
|
|
4724
4500
|
type_arguments: [];
|
|
4725
4501
|
}
|
|
4726
4502
|
|
|
4727
4503
|
export interface UpdateVoterPayload
|
|
4728
4504
|
extends TypedEntryFunctionPayload<[Address, Address]> {
|
|
4729
|
-
/** @deprecated use {@link arguments_decoded} instead */
|
|
4730
|
-
arguments_typed: [Address, Address];
|
|
4731
4505
|
arguments_decoded: [Address, Address];
|
|
4732
4506
|
type_arguments: [];
|
|
4733
4507
|
}
|