@sentio/sdk 2.61.1-rc.1 → 2.62.0-rc.1
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 +31 -0
- package/lib/aptos/builtin/0x1.d.ts.map +1 -1
- package/lib/aptos/builtin/0x1.js +62 -1
- package/lib/aptos/builtin/0x1.js.map +1 -1
- package/lib/iota/builtin/0x1.d.ts +65 -110
- package/lib/iota/builtin/0x1.d.ts.map +1 -1
- package/lib/iota/builtin/0x1.js.map +1 -1
- package/lib/iota/builtin/0x2.d.ts +595 -853
- package/lib/iota/builtin/0x2.d.ts.map +1 -1
- package/lib/iota/builtin/0x2.js.map +1 -1
- package/lib/iota/builtin/0x3.d.ts +289 -405
- package/lib/iota/builtin/0x3.d.ts.map +1 -1
- package/lib/iota/builtin/0x3.js +42 -1
- package/lib/iota/builtin/0x3.js.map +1 -1
- package/lib/sui/builtin/0x1.d.ts +10 -0
- package/lib/sui/builtin/0x1.d.ts.map +1 -1
- package/lib/sui/builtin/0x1.js +109 -1
- package/lib/sui/builtin/0x1.js.map +1 -1
- package/lib/sui/builtin/0x2.d.ts +109 -0
- package/lib/sui/builtin/0x2.d.ts.map +1 -1
- package/lib/sui/builtin/0x2.js +437 -1
- package/lib/sui/builtin/0x2.js.map +1 -1
- package/lib/sui/builtin/0x3.d.ts +4 -0
- package/lib/sui/builtin/0x3.d.ts.map +1 -1
- package/lib/sui/builtin/0x3.js +41 -1
- package/lib/sui/builtin/0x3.js.map +1 -1
- package/lib/testing/test-processor-server.d.ts.map +1 -1
- package/lib/testing/test-processor-server.js +2 -2
- package/lib/testing/test-processor-server.js.map +1 -1
- package/lib/testing/test-provider.js +2 -2
- package/package.json +16 -16
- package/src/aptos/abis/0x1.json +111 -9
- package/src/aptos/builtin/0x1.ts +118 -1
- package/src/iota/abis/0x3.json +70 -0
- package/src/iota/builtin/0x1.ts +65 -110
- package/src/iota/builtin/0x2.ts +595 -853
- package/src/iota/builtin/0x3.ts +341 -404
- package/src/sui/abis/0x1.json +123 -0
- package/src/sui/abis/0x2.json +607 -32
- package/src/sui/abis/0x3.json +52 -0
- package/src/sui/builtin/0x1.ts +153 -1
- package/src/sui/builtin/0x2.ts +708 -44
- package/src/sui/builtin/0x3.ts +57 -1
- package/src/testing/test-processor-server.ts +2 -2
- package/src/testing/test-provider.ts +2 -2
package/src/iota/builtin/0x3.ts
CHANGED
@@ -894,7 +894,7 @@ export namespace iota_system {
|
|
894
894
|
export namespace builder {
|
895
895
|
export function activeValidatorAddresses(
|
896
896
|
tx: Transaction,
|
897
|
-
args: [string | TransactionObjectArgument
|
897
|
+
args: [string | TransactionObjectArgument],
|
898
898
|
): TransactionArgument & [TransactionArgument] {
|
899
899
|
const _args: any[] = [];
|
900
900
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -907,7 +907,7 @@ export namespace iota_system {
|
|
907
907
|
}
|
908
908
|
export function committeeValidatorAddresses(
|
909
909
|
tx: Transaction,
|
910
|
-
args: [string | TransactionObjectArgument
|
910
|
+
args: [string | TransactionObjectArgument],
|
911
911
|
): TransactionArgument & [TransactionArgument] {
|
912
912
|
const _args: any[] = [];
|
913
913
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -959,7 +959,7 @@ export namespace iota_system {
|
|
959
959
|
}
|
960
960
|
export function getTotalIotaSupply(
|
961
961
|
tx: Transaction,
|
962
|
-
args: [string | TransactionObjectArgument
|
962
|
+
args: [string | TransactionObjectArgument],
|
963
963
|
): TransactionArgument & [TransactionArgument] {
|
964
964
|
const _args: any[] = [];
|
965
965
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -972,7 +972,7 @@ export namespace iota_system {
|
|
972
972
|
}
|
973
973
|
export function loadIotaSystemAdminCap(
|
974
974
|
tx: Transaction,
|
975
|
-
args: [string | TransactionObjectArgument
|
975
|
+
args: [string | TransactionObjectArgument],
|
976
976
|
): TransactionArgument & [TransactionArgument] {
|
977
977
|
const _args: any[] = [];
|
978
978
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -986,8 +986,8 @@ export namespace iota_system {
|
|
986
986
|
export function poolExchangeRates(
|
987
987
|
tx: Transaction,
|
988
988
|
args: [
|
989
|
-
string | TransactionObjectArgument
|
990
|
-
string | TransactionObjectArgument
|
989
|
+
string | TransactionObjectArgument,
|
990
|
+
string | TransactionObjectArgument,
|
991
991
|
],
|
992
992
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
993
993
|
const _args: any[] = [];
|
@@ -1003,8 +1003,8 @@ export namespace iota_system {
|
|
1003
1003
|
export function reportValidator(
|
1004
1004
|
tx: Transaction,
|
1005
1005
|
args: [
|
1006
|
-
string | TransactionObjectArgument
|
1007
|
-
string | TransactionObjectArgument
|
1006
|
+
string | TransactionObjectArgument,
|
1007
|
+
string | TransactionObjectArgument,
|
1008
1008
|
string | TransactionArgument,
|
1009
1009
|
],
|
1010
1010
|
): TransactionArgument &
|
@@ -1023,7 +1023,7 @@ export namespace iota_system {
|
|
1023
1023
|
export function requestAddStake(
|
1024
1024
|
tx: Transaction,
|
1025
1025
|
args: [
|
1026
|
-
string | TransactionObjectArgument
|
1026
|
+
string | TransactionObjectArgument,
|
1027
1027
|
_0x2.coin.Coin<_0x2.iota.IOTA> | TransactionArgument,
|
1028
1028
|
string | TransactionArgument,
|
1029
1029
|
],
|
@@ -1043,7 +1043,7 @@ export namespace iota_system {
|
|
1043
1043
|
export function requestAddStakeMulCoin(
|
1044
1044
|
tx: Transaction,
|
1045
1045
|
args: [
|
1046
|
-
string | TransactionObjectArgument
|
1046
|
+
string | TransactionObjectArgument,
|
1047
1047
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1048
1048
|
_0x1.option.Option<bigint> | TransactionArgument,
|
1049
1049
|
string | TransactionArgument,
|
@@ -1070,7 +1070,7 @@ export namespace iota_system {
|
|
1070
1070
|
export function requestAddStakeNonEntry(
|
1071
1071
|
tx: Transaction,
|
1072
1072
|
args: [
|
1073
|
-
string | TransactionObjectArgument
|
1073
|
+
string | TransactionObjectArgument,
|
1074
1074
|
_0x2.coin.Coin<_0x2.iota.IOTA> | TransactionArgument,
|
1075
1075
|
string | TransactionArgument,
|
1076
1076
|
],
|
@@ -1089,7 +1089,7 @@ export namespace iota_system {
|
|
1089
1089
|
}
|
1090
1090
|
export function requestAddValidator(
|
1091
1091
|
tx: Transaction,
|
1092
|
-
args: [string | TransactionObjectArgument
|
1092
|
+
args: [string | TransactionObjectArgument],
|
1093
1093
|
): TransactionArgument & [TransactionArgument] {
|
1094
1094
|
const _args: any[] = [];
|
1095
1095
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -1103,7 +1103,7 @@ export namespace iota_system {
|
|
1103
1103
|
export function requestAddValidatorCandidate(
|
1104
1104
|
tx: Transaction,
|
1105
1105
|
args: [
|
1106
|
-
string | TransactionObjectArgument
|
1106
|
+
string | TransactionObjectArgument,
|
1107
1107
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1108
1108
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1109
1109
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
@@ -1159,7 +1159,7 @@ export namespace iota_system {
|
|
1159
1159
|
}
|
1160
1160
|
export function requestRemoveValidator(
|
1161
1161
|
tx: Transaction,
|
1162
|
-
args: [string | TransactionObjectArgument
|
1162
|
+
args: [string | TransactionObjectArgument],
|
1163
1163
|
): TransactionArgument & [TransactionArgument] {
|
1164
1164
|
const _args: any[] = [];
|
1165
1165
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -1172,7 +1172,7 @@ export namespace iota_system {
|
|
1172
1172
|
}
|
1173
1173
|
export function requestRemoveValidatorCandidate(
|
1174
1174
|
tx: Transaction,
|
1175
|
-
args: [string | TransactionObjectArgument
|
1175
|
+
args: [string | TransactionObjectArgument],
|
1176
1176
|
): TransactionArgument & [TransactionArgument] {
|
1177
1177
|
const _args: any[] = [];
|
1178
1178
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -1185,10 +1185,7 @@ export namespace iota_system {
|
|
1185
1185
|
}
|
1186
1186
|
export function requestSetCommissionRate(
|
1187
1187
|
tx: Transaction,
|
1188
|
-
args: [
|
1189
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1190
|
-
bigint | TransactionArgument,
|
1191
|
-
],
|
1188
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
1192
1189
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
1193
1190
|
const _args: any[] = [];
|
1194
1191
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -1203,8 +1200,8 @@ export namespace iota_system {
|
|
1203
1200
|
export function requestSetGasPrice(
|
1204
1201
|
tx: Transaction,
|
1205
1202
|
args: [
|
1206
|
-
string | TransactionObjectArgument
|
1207
|
-
string | TransactionObjectArgument
|
1203
|
+
string | TransactionObjectArgument,
|
1204
|
+
string | TransactionObjectArgument,
|
1208
1205
|
bigint | TransactionArgument,
|
1209
1206
|
],
|
1210
1207
|
): TransactionArgument &
|
@@ -1223,7 +1220,7 @@ export namespace iota_system {
|
|
1223
1220
|
export function requestWithdrawStake(
|
1224
1221
|
tx: Transaction,
|
1225
1222
|
args: [
|
1226
|
-
string | TransactionObjectArgument
|
1223
|
+
string | TransactionObjectArgument,
|
1227
1224
|
staking_pool.StakedIota | TransactionArgument,
|
1228
1225
|
],
|
1229
1226
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1240,7 +1237,7 @@ export namespace iota_system {
|
|
1240
1237
|
export function requestWithdrawStakeNonEntry(
|
1241
1238
|
tx: Transaction,
|
1242
1239
|
args: [
|
1243
|
-
string | TransactionObjectArgument
|
1240
|
+
string | TransactionObjectArgument,
|
1244
1241
|
staking_pool.StakedIota | TransactionArgument,
|
1245
1242
|
],
|
1246
1243
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1256,7 +1253,7 @@ export namespace iota_system {
|
|
1256
1253
|
}
|
1257
1254
|
export function rotateOperationCap(
|
1258
1255
|
tx: Transaction,
|
1259
|
-
args: [string | TransactionObjectArgument
|
1256
|
+
args: [string | TransactionObjectArgument],
|
1260
1257
|
): TransactionArgument & [TransactionArgument] {
|
1261
1258
|
const _args: any[] = [];
|
1262
1259
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -1269,10 +1266,7 @@ export namespace iota_system {
|
|
1269
1266
|
}
|
1270
1267
|
export function setCandidateValidatorCommissionRate(
|
1271
1268
|
tx: Transaction,
|
1272
|
-
args: [
|
1273
|
-
string | TransactionObjectArgument | TransactionArgument,
|
1274
|
-
bigint | TransactionArgument,
|
1275
|
-
],
|
1269
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
1276
1270
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
1277
1271
|
const _args: any[] = [];
|
1278
1272
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -1287,8 +1281,8 @@ export namespace iota_system {
|
|
1287
1281
|
export function setCandidateValidatorGasPrice(
|
1288
1282
|
tx: Transaction,
|
1289
1283
|
args: [
|
1290
|
-
string | TransactionObjectArgument
|
1291
|
-
string | TransactionObjectArgument
|
1284
|
+
string | TransactionObjectArgument,
|
1285
|
+
string | TransactionObjectArgument,
|
1292
1286
|
bigint | TransactionArgument,
|
1293
1287
|
],
|
1294
1288
|
): TransactionArgument &
|
@@ -1307,8 +1301,8 @@ export namespace iota_system {
|
|
1307
1301
|
export function undoReportValidator(
|
1308
1302
|
tx: Transaction,
|
1309
1303
|
args: [
|
1310
|
-
string | TransactionObjectArgument
|
1311
|
-
string | TransactionObjectArgument
|
1304
|
+
string | TransactionObjectArgument,
|
1305
|
+
string | TransactionObjectArgument,
|
1312
1306
|
string | TransactionArgument,
|
1313
1307
|
],
|
1314
1308
|
): TransactionArgument &
|
@@ -1327,7 +1321,7 @@ export namespace iota_system {
|
|
1327
1321
|
export function updateCandidateValidatorAuthorityPubkey(
|
1328
1322
|
tx: Transaction,
|
1329
1323
|
args: [
|
1330
|
-
string | TransactionObjectArgument
|
1324
|
+
string | TransactionObjectArgument,
|
1331
1325
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1332
1326
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1333
1327
|
],
|
@@ -1347,7 +1341,7 @@ export namespace iota_system {
|
|
1347
1341
|
export function updateCandidateValidatorNetworkAddress(
|
1348
1342
|
tx: Transaction,
|
1349
1343
|
args: [
|
1350
|
-
string | TransactionObjectArgument
|
1344
|
+
string | TransactionObjectArgument,
|
1351
1345
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1352
1346
|
],
|
1353
1347
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1364,7 +1358,7 @@ export namespace iota_system {
|
|
1364
1358
|
export function updateCandidateValidatorNetworkPubkey(
|
1365
1359
|
tx: Transaction,
|
1366
1360
|
args: [
|
1367
|
-
string | TransactionObjectArgument
|
1361
|
+
string | TransactionObjectArgument,
|
1368
1362
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1369
1363
|
],
|
1370
1364
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1381,7 +1375,7 @@ export namespace iota_system {
|
|
1381
1375
|
export function updateCandidateValidatorP2pAddress(
|
1382
1376
|
tx: Transaction,
|
1383
1377
|
args: [
|
1384
|
-
string | TransactionObjectArgument
|
1378
|
+
string | TransactionObjectArgument,
|
1385
1379
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1386
1380
|
],
|
1387
1381
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1398,7 +1392,7 @@ export namespace iota_system {
|
|
1398
1392
|
export function updateCandidateValidatorPrimaryAddress(
|
1399
1393
|
tx: Transaction,
|
1400
1394
|
args: [
|
1401
|
-
string | TransactionObjectArgument
|
1395
|
+
string | TransactionObjectArgument,
|
1402
1396
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1403
1397
|
],
|
1404
1398
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1415,7 +1409,7 @@ export namespace iota_system {
|
|
1415
1409
|
export function updateCandidateValidatorProtocolPubkey(
|
1416
1410
|
tx: Transaction,
|
1417
1411
|
args: [
|
1418
|
-
string | TransactionObjectArgument
|
1412
|
+
string | TransactionObjectArgument,
|
1419
1413
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1420
1414
|
],
|
1421
1415
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1432,7 +1426,7 @@ export namespace iota_system {
|
|
1432
1426
|
export function updateValidatorDescription(
|
1433
1427
|
tx: Transaction,
|
1434
1428
|
args: [
|
1435
|
-
string | TransactionObjectArgument
|
1429
|
+
string | TransactionObjectArgument,
|
1436
1430
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1437
1431
|
],
|
1438
1432
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1449,7 +1443,7 @@ export namespace iota_system {
|
|
1449
1443
|
export function updateValidatorImageUrl(
|
1450
1444
|
tx: Transaction,
|
1451
1445
|
args: [
|
1452
|
-
string | TransactionObjectArgument
|
1446
|
+
string | TransactionObjectArgument,
|
1453
1447
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1454
1448
|
],
|
1455
1449
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1466,7 +1460,7 @@ export namespace iota_system {
|
|
1466
1460
|
export function updateValidatorName(
|
1467
1461
|
tx: Transaction,
|
1468
1462
|
args: [
|
1469
|
-
string | TransactionObjectArgument
|
1463
|
+
string | TransactionObjectArgument,
|
1470
1464
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1471
1465
|
],
|
1472
1466
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1483,7 +1477,7 @@ export namespace iota_system {
|
|
1483
1477
|
export function updateValidatorNextEpochAuthorityPubkey(
|
1484
1478
|
tx: Transaction,
|
1485
1479
|
args: [
|
1486
|
-
string | TransactionObjectArgument
|
1480
|
+
string | TransactionObjectArgument,
|
1487
1481
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1488
1482
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1489
1483
|
],
|
@@ -1504,7 +1498,7 @@ export namespace iota_system {
|
|
1504
1498
|
export function updateValidatorNextEpochNetworkAddress(
|
1505
1499
|
tx: Transaction,
|
1506
1500
|
args: [
|
1507
|
-
string | TransactionObjectArgument
|
1501
|
+
string | TransactionObjectArgument,
|
1508
1502
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1509
1503
|
],
|
1510
1504
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1521,7 +1515,7 @@ export namespace iota_system {
|
|
1521
1515
|
export function updateValidatorNextEpochNetworkPubkey(
|
1522
1516
|
tx: Transaction,
|
1523
1517
|
args: [
|
1524
|
-
string | TransactionObjectArgument
|
1518
|
+
string | TransactionObjectArgument,
|
1525
1519
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1526
1520
|
],
|
1527
1521
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1538,7 +1532,7 @@ export namespace iota_system {
|
|
1538
1532
|
export function updateValidatorNextEpochP2pAddress(
|
1539
1533
|
tx: Transaction,
|
1540
1534
|
args: [
|
1541
|
-
string | TransactionObjectArgument
|
1535
|
+
string | TransactionObjectArgument,
|
1542
1536
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1543
1537
|
],
|
1544
1538
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1555,7 +1549,7 @@ export namespace iota_system {
|
|
1555
1549
|
export function updateValidatorNextEpochPrimaryAddress(
|
1556
1550
|
tx: Transaction,
|
1557
1551
|
args: [
|
1558
|
-
string | TransactionObjectArgument
|
1552
|
+
string | TransactionObjectArgument,
|
1559
1553
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1560
1554
|
],
|
1561
1555
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1572,7 +1566,7 @@ export namespace iota_system {
|
|
1572
1566
|
export function updateValidatorNextEpochProtocolPubkey(
|
1573
1567
|
tx: Transaction,
|
1574
1568
|
args: [
|
1575
|
-
string | TransactionObjectArgument
|
1569
|
+
string | TransactionObjectArgument,
|
1576
1570
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1577
1571
|
],
|
1578
1572
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1589,7 +1583,7 @@ export namespace iota_system {
|
|
1589
1583
|
export function updateValidatorProjectUrl(
|
1590
1584
|
tx: Transaction,
|
1591
1585
|
args: [
|
1592
|
-
string | TransactionObjectArgument
|
1586
|
+
string | TransactionObjectArgument,
|
1593
1587
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
1594
1588
|
],
|
1595
1589
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -1606,8 +1600,8 @@ export namespace iota_system {
|
|
1606
1600
|
export function validatorAddressByPoolId(
|
1607
1601
|
tx: Transaction,
|
1608
1602
|
args: [
|
1609
|
-
string | TransactionObjectArgument
|
1610
|
-
string | TransactionObjectArgument
|
1603
|
+
string | TransactionObjectArgument,
|
1604
|
+
string | TransactionObjectArgument,
|
1611
1605
|
],
|
1612
1606
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
1613
1607
|
const _args: any[] = [];
|
@@ -2690,7 +2684,7 @@ export namespace iota_system_state_inner {
|
|
2690
2684
|
export namespace builder {
|
2691
2685
|
export function activeValidatorAddresses(
|
2692
2686
|
tx: Transaction,
|
2693
|
-
args: [string | TransactionObjectArgument
|
2687
|
+
args: [string | TransactionObjectArgument],
|
2694
2688
|
): TransactionArgument & [TransactionArgument] {
|
2695
2689
|
const _args: any[] = [];
|
2696
2690
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2704,7 +2698,7 @@ export namespace iota_system_state_inner {
|
|
2704
2698
|
export function advanceEpoch(
|
2705
2699
|
tx: Transaction,
|
2706
2700
|
args: [
|
2707
|
-
string | TransactionObjectArgument
|
2701
|
+
string | TransactionObjectArgument,
|
2708
2702
|
bigint | TransactionArgument,
|
2709
2703
|
bigint | TransactionArgument,
|
2710
2704
|
bigint | TransactionArgument,
|
@@ -2754,7 +2748,7 @@ export namespace iota_system_state_inner {
|
|
2754
2748
|
}
|
2755
2749
|
export function committeeValidatorAddresses(
|
2756
2750
|
tx: Transaction,
|
2757
|
-
args: [string | TransactionObjectArgument
|
2751
|
+
args: [string | TransactionObjectArgument],
|
2758
2752
|
): TransactionArgument & [TransactionArgument] {
|
2759
2753
|
const _args: any[] = [];
|
2760
2754
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2767,7 +2761,7 @@ export namespace iota_system_state_inner {
|
|
2767
2761
|
}
|
2768
2762
|
export function committeeValidatorVotingPowers(
|
2769
2763
|
tx: Transaction,
|
2770
|
-
args: [string | TransactionObjectArgument
|
2764
|
+
args: [string | TransactionObjectArgument],
|
2771
2765
|
): TransactionArgument & [TransactionArgument] {
|
2772
2766
|
const _args: any[] = [];
|
2773
2767
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2850,7 +2844,7 @@ export namespace iota_system_state_inner {
|
|
2850
2844
|
}
|
2851
2845
|
export function epoch(
|
2852
2846
|
tx: Transaction,
|
2853
|
-
args: [string | TransactionObjectArgument
|
2847
|
+
args: [string | TransactionObjectArgument],
|
2854
2848
|
): TransactionArgument & [TransactionArgument] {
|
2855
2849
|
const _args: any[] = [];
|
2856
2850
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2863,7 +2857,7 @@ export namespace iota_system_state_inner {
|
|
2863
2857
|
}
|
2864
2858
|
export function epochStartTimestampMs(
|
2865
2859
|
tx: Transaction,
|
2866
|
-
args: [string | TransactionObjectArgument
|
2860
|
+
args: [string | TransactionObjectArgument],
|
2867
2861
|
): TransactionArgument & [TransactionArgument] {
|
2868
2862
|
const _args: any[] = [];
|
2869
2863
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2888,10 +2882,7 @@ export namespace iota_system_state_inner {
|
|
2888
2882
|
}
|
2889
2883
|
export function getReportersOf(
|
2890
2884
|
tx: Transaction,
|
2891
|
-
args: [
|
2892
|
-
string | TransactionObjectArgument | TransactionArgument,
|
2893
|
-
string | TransactionArgument,
|
2894
|
-
],
|
2885
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
2895
2886
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
2896
2887
|
const _args: any[] = [];
|
2897
2888
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2905,7 +2896,7 @@ export namespace iota_system_state_inner {
|
|
2905
2896
|
}
|
2906
2897
|
export function getStorageFundObjectRebates(
|
2907
2898
|
tx: Transaction,
|
2908
|
-
args: [string | TransactionObjectArgument
|
2899
|
+
args: [string | TransactionObjectArgument],
|
2909
2900
|
): TransactionArgument & [TransactionArgument] {
|
2910
2901
|
const _args: any[] = [];
|
2911
2902
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2918,7 +2909,7 @@ export namespace iota_system_state_inner {
|
|
2918
2909
|
}
|
2919
2910
|
export function getStorageFundTotalBalance(
|
2920
2911
|
tx: Transaction,
|
2921
|
-
args: [string | TransactionObjectArgument
|
2912
|
+
args: [string | TransactionObjectArgument],
|
2922
2913
|
): TransactionArgument & [TransactionArgument] {
|
2923
2914
|
const _args: any[] = [];
|
2924
2915
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2931,7 +2922,7 @@ export namespace iota_system_state_inner {
|
|
2931
2922
|
}
|
2932
2923
|
export function getTotalIotaSupply(
|
2933
2924
|
tx: Transaction,
|
2934
|
-
args: [string | TransactionObjectArgument
|
2925
|
+
args: [string | TransactionObjectArgument],
|
2935
2926
|
): TransactionArgument & [TransactionArgument] {
|
2936
2927
|
const _args: any[] = [];
|
2937
2928
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2944,7 +2935,7 @@ export namespace iota_system_state_inner {
|
|
2944
2935
|
}
|
2945
2936
|
export function iotaSystemAdminCap(
|
2946
2937
|
tx: Transaction,
|
2947
|
-
args: [string | TransactionObjectArgument
|
2938
|
+
args: [string | TransactionObjectArgument],
|
2948
2939
|
): TransactionArgument & [TransactionArgument] {
|
2949
2940
|
const _args: any[] = [];
|
2950
2941
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2958,8 +2949,8 @@ export namespace iota_system_state_inner {
|
|
2958
2949
|
export function poolExchangeRates(
|
2959
2950
|
tx: Transaction,
|
2960
2951
|
args: [
|
2961
|
-
string | TransactionObjectArgument
|
2962
|
-
string | TransactionObjectArgument
|
2952
|
+
string | TransactionObjectArgument,
|
2953
|
+
string | TransactionObjectArgument,
|
2963
2954
|
],
|
2964
2955
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
2965
2956
|
const _args: any[] = [];
|
@@ -2974,7 +2965,7 @@ export namespace iota_system_state_inner {
|
|
2974
2965
|
}
|
2975
2966
|
export function protocolVersion(
|
2976
2967
|
tx: Transaction,
|
2977
|
-
args: [string | TransactionObjectArgument
|
2968
|
+
args: [string | TransactionObjectArgument],
|
2978
2969
|
): TransactionArgument & [TransactionArgument] {
|
2979
2970
|
const _args: any[] = [];
|
2980
2971
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -2988,8 +2979,8 @@ export namespace iota_system_state_inner {
|
|
2988
2979
|
export function reportValidator(
|
2989
2980
|
tx: Transaction,
|
2990
2981
|
args: [
|
2991
|
-
string | TransactionObjectArgument
|
2992
|
-
string | TransactionObjectArgument
|
2982
|
+
string | TransactionObjectArgument,
|
2983
|
+
string | TransactionObjectArgument,
|
2993
2984
|
string | TransactionArgument,
|
2994
2985
|
],
|
2995
2986
|
): TransactionArgument &
|
@@ -3008,7 +2999,7 @@ export namespace iota_system_state_inner {
|
|
3008
2999
|
export function requestAddStake(
|
3009
3000
|
tx: Transaction,
|
3010
3001
|
args: [
|
3011
|
-
string | TransactionObjectArgument
|
3002
|
+
string | TransactionObjectArgument,
|
3012
3003
|
_0x2.coin.Coin<_0x2.iota.IOTA> | TransactionArgument,
|
3013
3004
|
string | TransactionArgument,
|
3014
3005
|
],
|
@@ -3028,7 +3019,7 @@ export namespace iota_system_state_inner {
|
|
3028
3019
|
export function requestAddStakeMulCoin(
|
3029
3020
|
tx: Transaction,
|
3030
3021
|
args: [
|
3031
|
-
string | TransactionObjectArgument
|
3022
|
+
string | TransactionObjectArgument,
|
3032
3023
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3033
3024
|
_0x1.option.Option<bigint> | TransactionArgument,
|
3034
3025
|
string | TransactionArgument,
|
@@ -3054,7 +3045,7 @@ export namespace iota_system_state_inner {
|
|
3054
3045
|
}
|
3055
3046
|
export function requestAddValidator(
|
3056
3047
|
tx: Transaction,
|
3057
|
-
args: [string | TransactionObjectArgument
|
3048
|
+
args: [string | TransactionObjectArgument],
|
3058
3049
|
): TransactionArgument & [TransactionArgument] {
|
3059
3050
|
const _args: any[] = [];
|
3060
3051
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3068,7 +3059,7 @@ export namespace iota_system_state_inner {
|
|
3068
3059
|
export function requestAddValidatorCandidate(
|
3069
3060
|
tx: Transaction,
|
3070
3061
|
args: [
|
3071
|
-
string | TransactionObjectArgument
|
3062
|
+
string | TransactionObjectArgument,
|
3072
3063
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3073
3064
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3074
3065
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
@@ -3124,7 +3115,7 @@ export namespace iota_system_state_inner {
|
|
3124
3115
|
}
|
3125
3116
|
export function requestRemoveValidator(
|
3126
3117
|
tx: Transaction,
|
3127
|
-
args: [string | TransactionObjectArgument
|
3118
|
+
args: [string | TransactionObjectArgument],
|
3128
3119
|
): TransactionArgument & [TransactionArgument] {
|
3129
3120
|
const _args: any[] = [];
|
3130
3121
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3137,7 +3128,7 @@ export namespace iota_system_state_inner {
|
|
3137
3128
|
}
|
3138
3129
|
export function requestRemoveValidatorCandidate(
|
3139
3130
|
tx: Transaction,
|
3140
|
-
args: [string | TransactionObjectArgument
|
3131
|
+
args: [string | TransactionObjectArgument],
|
3141
3132
|
): TransactionArgument & [TransactionArgument] {
|
3142
3133
|
const _args: any[] = [];
|
3143
3134
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3151,10 +3142,7 @@ export namespace iota_system_state_inner {
|
|
3151
3142
|
}
|
3152
3143
|
export function requestSetCommissionRate(
|
3153
3144
|
tx: Transaction,
|
3154
|
-
args: [
|
3155
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3156
|
-
bigint | TransactionArgument,
|
3157
|
-
],
|
3145
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
3158
3146
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
3159
3147
|
const _args: any[] = [];
|
3160
3148
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3169,7 +3157,7 @@ export namespace iota_system_state_inner {
|
|
3169
3157
|
export function requestWithdrawStake(
|
3170
3158
|
tx: Transaction,
|
3171
3159
|
args: [
|
3172
|
-
string | TransactionObjectArgument
|
3160
|
+
string | TransactionObjectArgument,
|
3173
3161
|
staking_pool.StakedIota | TransactionArgument,
|
3174
3162
|
],
|
3175
3163
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3185,7 +3173,7 @@ export namespace iota_system_state_inner {
|
|
3185
3173
|
}
|
3186
3174
|
export function rotateOperationCap(
|
3187
3175
|
tx: Transaction,
|
3188
|
-
args: [string | TransactionObjectArgument
|
3176
|
+
args: [string | TransactionObjectArgument],
|
3189
3177
|
): TransactionArgument & [TransactionArgument] {
|
3190
3178
|
const _args: any[] = [];
|
3191
3179
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3198,10 +3186,7 @@ export namespace iota_system_state_inner {
|
|
3198
3186
|
}
|
3199
3187
|
export function setCandidateValidatorCommissionRate(
|
3200
3188
|
tx: Transaction,
|
3201
|
-
args: [
|
3202
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3203
|
-
bigint | TransactionArgument,
|
3204
|
-
],
|
3189
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
3205
3190
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
3206
3191
|
const _args: any[] = [];
|
3207
3192
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3216,7 +3201,7 @@ export namespace iota_system_state_inner {
|
|
3216
3201
|
}
|
3217
3202
|
export function systemStateVersion(
|
3218
3203
|
tx: Transaction,
|
3219
|
-
args: [string | TransactionObjectArgument
|
3204
|
+
args: [string | TransactionObjectArgument],
|
3220
3205
|
): TransactionArgument & [TransactionArgument] {
|
3221
3206
|
const _args: any[] = [];
|
3222
3207
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3230,8 +3215,8 @@ export namespace iota_system_state_inner {
|
|
3230
3215
|
export function undoReportValidator(
|
3231
3216
|
tx: Transaction,
|
3232
3217
|
args: [
|
3233
|
-
string | TransactionObjectArgument
|
3234
|
-
string | TransactionObjectArgument
|
3218
|
+
string | TransactionObjectArgument,
|
3219
|
+
string | TransactionObjectArgument,
|
3235
3220
|
string | TransactionArgument,
|
3236
3221
|
],
|
3237
3222
|
): TransactionArgument &
|
@@ -3250,7 +3235,7 @@ export namespace iota_system_state_inner {
|
|
3250
3235
|
export function updateCandidateValidatorAuthorityPubkey(
|
3251
3236
|
tx: Transaction,
|
3252
3237
|
args: [
|
3253
|
-
string | TransactionObjectArgument
|
3238
|
+
string | TransactionObjectArgument,
|
3254
3239
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3255
3240
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3256
3241
|
],
|
@@ -3271,7 +3256,7 @@ export namespace iota_system_state_inner {
|
|
3271
3256
|
export function updateCandidateValidatorNetworkAddress(
|
3272
3257
|
tx: Transaction,
|
3273
3258
|
args: [
|
3274
|
-
string | TransactionObjectArgument
|
3259
|
+
string | TransactionObjectArgument,
|
3275
3260
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3276
3261
|
],
|
3277
3262
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3289,7 +3274,7 @@ export namespace iota_system_state_inner {
|
|
3289
3274
|
export function updateCandidateValidatorNetworkPubkey(
|
3290
3275
|
tx: Transaction,
|
3291
3276
|
args: [
|
3292
|
-
string | TransactionObjectArgument
|
3277
|
+
string | TransactionObjectArgument,
|
3293
3278
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3294
3279
|
],
|
3295
3280
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3307,7 +3292,7 @@ export namespace iota_system_state_inner {
|
|
3307
3292
|
export function updateCandidateValidatorP2pAddress(
|
3308
3293
|
tx: Transaction,
|
3309
3294
|
args: [
|
3310
|
-
string | TransactionObjectArgument
|
3295
|
+
string | TransactionObjectArgument,
|
3311
3296
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3312
3297
|
],
|
3313
3298
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3325,7 +3310,7 @@ export namespace iota_system_state_inner {
|
|
3325
3310
|
export function updateCandidateValidatorPrimaryAddress(
|
3326
3311
|
tx: Transaction,
|
3327
3312
|
args: [
|
3328
|
-
string | TransactionObjectArgument
|
3313
|
+
string | TransactionObjectArgument,
|
3329
3314
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3330
3315
|
],
|
3331
3316
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3343,7 +3328,7 @@ export namespace iota_system_state_inner {
|
|
3343
3328
|
export function updateCandidateValidatorProtocolPubkey(
|
3344
3329
|
tx: Transaction,
|
3345
3330
|
args: [
|
3346
|
-
string | TransactionObjectArgument
|
3331
|
+
string | TransactionObjectArgument,
|
3347
3332
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3348
3333
|
],
|
3349
3334
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3361,7 +3346,7 @@ export namespace iota_system_state_inner {
|
|
3361
3346
|
export function updateValidatorDescription(
|
3362
3347
|
tx: Transaction,
|
3363
3348
|
args: [
|
3364
|
-
string | TransactionObjectArgument
|
3349
|
+
string | TransactionObjectArgument,
|
3365
3350
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3366
3351
|
],
|
3367
3352
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3378,7 +3363,7 @@ export namespace iota_system_state_inner {
|
|
3378
3363
|
export function updateValidatorImageUrl(
|
3379
3364
|
tx: Transaction,
|
3380
3365
|
args: [
|
3381
|
-
string | TransactionObjectArgument
|
3366
|
+
string | TransactionObjectArgument,
|
3382
3367
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3383
3368
|
],
|
3384
3369
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3395,7 +3380,7 @@ export namespace iota_system_state_inner {
|
|
3395
3380
|
export function updateValidatorName(
|
3396
3381
|
tx: Transaction,
|
3397
3382
|
args: [
|
3398
|
-
string | TransactionObjectArgument
|
3383
|
+
string | TransactionObjectArgument,
|
3399
3384
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3400
3385
|
],
|
3401
3386
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3412,7 +3397,7 @@ export namespace iota_system_state_inner {
|
|
3412
3397
|
export function updateValidatorNextEpochAuthorityPubkey(
|
3413
3398
|
tx: Transaction,
|
3414
3399
|
args: [
|
3415
|
-
string | TransactionObjectArgument
|
3400
|
+
string | TransactionObjectArgument,
|
3416
3401
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3417
3402
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3418
3403
|
],
|
@@ -3433,7 +3418,7 @@ export namespace iota_system_state_inner {
|
|
3433
3418
|
export function updateValidatorNextEpochNetworkAddress(
|
3434
3419
|
tx: Transaction,
|
3435
3420
|
args: [
|
3436
|
-
string | TransactionObjectArgument
|
3421
|
+
string | TransactionObjectArgument,
|
3437
3422
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3438
3423
|
],
|
3439
3424
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3451,7 +3436,7 @@ export namespace iota_system_state_inner {
|
|
3451
3436
|
export function updateValidatorNextEpochNetworkPubkey(
|
3452
3437
|
tx: Transaction,
|
3453
3438
|
args: [
|
3454
|
-
string | TransactionObjectArgument
|
3439
|
+
string | TransactionObjectArgument,
|
3455
3440
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3456
3441
|
],
|
3457
3442
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3469,7 +3454,7 @@ export namespace iota_system_state_inner {
|
|
3469
3454
|
export function updateValidatorNextEpochP2pAddress(
|
3470
3455
|
tx: Transaction,
|
3471
3456
|
args: [
|
3472
|
-
string | TransactionObjectArgument
|
3457
|
+
string | TransactionObjectArgument,
|
3473
3458
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3474
3459
|
],
|
3475
3460
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3487,7 +3472,7 @@ export namespace iota_system_state_inner {
|
|
3487
3472
|
export function updateValidatorNextEpochPrimaryAddress(
|
3488
3473
|
tx: Transaction,
|
3489
3474
|
args: [
|
3490
|
-
string | TransactionObjectArgument
|
3475
|
+
string | TransactionObjectArgument,
|
3491
3476
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3492
3477
|
],
|
3493
3478
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3505,7 +3490,7 @@ export namespace iota_system_state_inner {
|
|
3505
3490
|
export function updateValidatorNextEpochProtocolPubkey(
|
3506
3491
|
tx: Transaction,
|
3507
3492
|
args: [
|
3508
|
-
string | TransactionObjectArgument
|
3493
|
+
string | TransactionObjectArgument,
|
3509
3494
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3510
3495
|
],
|
3511
3496
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3523,7 +3508,7 @@ export namespace iota_system_state_inner {
|
|
3523
3508
|
export function updateValidatorProjectUrl(
|
3524
3509
|
tx: Transaction,
|
3525
3510
|
args: [
|
3526
|
-
string | TransactionObjectArgument
|
3511
|
+
string | TransactionObjectArgument,
|
3527
3512
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
3528
3513
|
],
|
3529
3514
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -3553,8 +3538,8 @@ export namespace iota_system_state_inner {
|
|
3553
3538
|
export function validatorAddressByPoolId(
|
3554
3539
|
tx: Transaction,
|
3555
3540
|
args: [
|
3556
|
-
string | TransactionObjectArgument
|
3557
|
-
string | TransactionObjectArgument
|
3541
|
+
string | TransactionObjectArgument,
|
3542
|
+
string | TransactionObjectArgument,
|
3558
3543
|
],
|
3559
3544
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
3560
3545
|
const _args: any[] = [];
|
@@ -3569,10 +3554,7 @@ export namespace iota_system_state_inner {
|
|
3569
3554
|
}
|
3570
3555
|
export function validatorStakeAmount(
|
3571
3556
|
tx: Transaction,
|
3572
|
-
args: [
|
3573
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3574
|
-
string | TransactionArgument,
|
3575
|
-
],
|
3557
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
3576
3558
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
3577
3559
|
const _args: any[] = [];
|
3578
3560
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3586,10 +3568,7 @@ export namespace iota_system_state_inner {
|
|
3586
3568
|
}
|
3587
3569
|
export function validatorStakingPoolId(
|
3588
3570
|
tx: Transaction,
|
3589
|
-
args: [
|
3590
|
-
string | TransactionObjectArgument | TransactionArgument,
|
3591
|
-
string | TransactionArgument,
|
3592
|
-
],
|
3571
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
3593
3572
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
3594
3573
|
const _args: any[] = [];
|
3595
3574
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -3603,7 +3582,7 @@ export namespace iota_system_state_inner {
|
|
3603
3582
|
}
|
3604
3583
|
export function validatorStakingPoolMappings(
|
3605
3584
|
tx: Transaction,
|
3606
|
-
args: [string | TransactionObjectArgument
|
3585
|
+
args: [string | TransactionObjectArgument],
|
3607
3586
|
): TransactionArgument & [TransactionArgument] {
|
3608
3587
|
const _args: any[] = [];
|
3609
3588
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4553,10 +4532,7 @@ export namespace staking_pool {
|
|
4553
4532
|
export namespace builder {
|
4554
4533
|
export function activateStakingPool(
|
4555
4534
|
tx: Transaction,
|
4556
|
-
args: [
|
4557
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4558
|
-
bigint | TransactionArgument,
|
4559
|
-
],
|
4535
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
4560
4536
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
4561
4537
|
const _args: any[] = [];
|
4562
4538
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4570,10 +4546,7 @@ export namespace staking_pool {
|
|
4570
4546
|
}
|
4571
4547
|
export function deactivateStakingPool(
|
4572
4548
|
tx: Transaction,
|
4573
|
-
args: [
|
4574
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4575
|
-
bigint | TransactionArgument,
|
4576
|
-
],
|
4549
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
4577
4550
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
4578
4551
|
const _args: any[] = [];
|
4579
4552
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4588,7 +4561,7 @@ export namespace staking_pool {
|
|
4588
4561
|
export function depositRewards(
|
4589
4562
|
tx: Transaction,
|
4590
4563
|
args: [
|
4591
|
-
string | TransactionObjectArgument
|
4564
|
+
string | TransactionObjectArgument,
|
4592
4565
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
4593
4566
|
],
|
4594
4567
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -4604,7 +4577,7 @@ export namespace staking_pool {
|
|
4604
4577
|
}
|
4605
4578
|
export function exchangeRates(
|
4606
4579
|
tx: Transaction,
|
4607
|
-
args: [string | TransactionObjectArgument
|
4580
|
+
args: [string | TransactionObjectArgument],
|
4608
4581
|
): TransactionArgument & [TransactionArgument] {
|
4609
4582
|
const _args: any[] = [];
|
4610
4583
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4617,7 +4590,7 @@ export namespace staking_pool {
|
|
4617
4590
|
}
|
4618
4591
|
export function iotaAmount(
|
4619
4592
|
tx: Transaction,
|
4620
|
-
args: [string | TransactionObjectArgument
|
4593
|
+
args: [string | TransactionObjectArgument],
|
4621
4594
|
): TransactionArgument & [TransactionArgument] {
|
4622
4595
|
const _args: any[] = [];
|
4623
4596
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4630,7 +4603,7 @@ export namespace staking_pool {
|
|
4630
4603
|
}
|
4631
4604
|
export function iotaBalance(
|
4632
4605
|
tx: Transaction,
|
4633
|
-
args: [string | TransactionObjectArgument
|
4606
|
+
args: [string | TransactionObjectArgument],
|
4634
4607
|
): TransactionArgument & [TransactionArgument] {
|
4635
4608
|
const _args: any[] = [];
|
4636
4609
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4644,8 +4617,8 @@ export namespace staking_pool {
|
|
4644
4617
|
export function isEqualStakingMetadata(
|
4645
4618
|
tx: Transaction,
|
4646
4619
|
args: [
|
4647
|
-
string | TransactionObjectArgument
|
4648
|
-
string | TransactionObjectArgument
|
4620
|
+
string | TransactionObjectArgument,
|
4621
|
+
string | TransactionObjectArgument,
|
4649
4622
|
],
|
4650
4623
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
4651
4624
|
const _args: any[] = [];
|
@@ -4660,7 +4633,7 @@ export namespace staking_pool {
|
|
4660
4633
|
}
|
4661
4634
|
export function isInactive(
|
4662
4635
|
tx: Transaction,
|
4663
|
-
args: [string | TransactionObjectArgument
|
4636
|
+
args: [string | TransactionObjectArgument],
|
4664
4637
|
): TransactionArgument & [TransactionArgument] {
|
4665
4638
|
const _args: any[] = [];
|
4666
4639
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4673,7 +4646,7 @@ export namespace staking_pool {
|
|
4673
4646
|
}
|
4674
4647
|
export function isPreactive(
|
4675
4648
|
tx: Transaction,
|
4676
|
-
args: [string | TransactionObjectArgument
|
4649
|
+
args: [string | TransactionObjectArgument],
|
4677
4650
|
): TransactionArgument & [TransactionArgument] {
|
4678
4651
|
const _args: any[] = [];
|
4679
4652
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4687,7 +4660,7 @@ export namespace staking_pool {
|
|
4687
4660
|
export function joinStakedIota(
|
4688
4661
|
tx: Transaction,
|
4689
4662
|
args: [
|
4690
|
-
string | TransactionObjectArgument
|
4663
|
+
string | TransactionObjectArgument,
|
4691
4664
|
staking_pool.StakedIota | TransactionArgument,
|
4692
4665
|
],
|
4693
4666
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -4712,7 +4685,7 @@ export namespace staking_pool {
|
|
4712
4685
|
}
|
4713
4686
|
export function pendingStakeAmount(
|
4714
4687
|
tx: Transaction,
|
4715
|
-
args: [string | TransactionObjectArgument
|
4688
|
+
args: [string | TransactionObjectArgument],
|
4716
4689
|
): TransactionArgument & [TransactionArgument] {
|
4717
4690
|
const _args: any[] = [];
|
4718
4691
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4725,7 +4698,7 @@ export namespace staking_pool {
|
|
4725
4698
|
}
|
4726
4699
|
export function pendingStakeWithdrawAmount(
|
4727
4700
|
tx: Transaction,
|
4728
|
-
args: [string | TransactionObjectArgument
|
4701
|
+
args: [string | TransactionObjectArgument],
|
4729
4702
|
): TransactionArgument & [TransactionArgument] {
|
4730
4703
|
const _args: any[] = [];
|
4731
4704
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4738,7 +4711,7 @@ export namespace staking_pool {
|
|
4738
4711
|
}
|
4739
4712
|
export function poolId(
|
4740
4713
|
tx: Transaction,
|
4741
|
-
args: [string | TransactionObjectArgument
|
4714
|
+
args: [string | TransactionObjectArgument],
|
4742
4715
|
): TransactionArgument & [TransactionArgument] {
|
4743
4716
|
const _args: any[] = [];
|
4744
4717
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4751,7 +4724,7 @@ export namespace staking_pool {
|
|
4751
4724
|
}
|
4752
4725
|
export function poolTokenAmount(
|
4753
4726
|
tx: Transaction,
|
4754
|
-
args: [string | TransactionObjectArgument
|
4727
|
+
args: [string | TransactionObjectArgument],
|
4755
4728
|
): TransactionArgument & [TransactionArgument] {
|
4756
4729
|
const _args: any[] = [];
|
4757
4730
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4764,10 +4737,7 @@ export namespace staking_pool {
|
|
4764
4737
|
}
|
4765
4738
|
export function poolTokenExchangeRateAtEpoch(
|
4766
4739
|
tx: Transaction,
|
4767
|
-
args: [
|
4768
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4769
|
-
bigint | TransactionArgument,
|
4770
|
-
],
|
4740
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
4771
4741
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
4772
4742
|
const _args: any[] = [];
|
4773
4743
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4781,7 +4751,7 @@ export namespace staking_pool {
|
|
4781
4751
|
}
|
4782
4752
|
export function processPendingStake(
|
4783
4753
|
tx: Transaction,
|
4784
|
-
args: [string | TransactionObjectArgument
|
4754
|
+
args: [string | TransactionObjectArgument],
|
4785
4755
|
): TransactionArgument & [TransactionArgument] {
|
4786
4756
|
const _args: any[] = [];
|
4787
4757
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4794,7 +4764,7 @@ export namespace staking_pool {
|
|
4794
4764
|
}
|
4795
4765
|
export function processPendingStakeWithdraw(
|
4796
4766
|
tx: Transaction,
|
4797
|
-
args: [string | TransactionObjectArgument
|
4767
|
+
args: [string | TransactionObjectArgument],
|
4798
4768
|
): TransactionArgument & [TransactionArgument] {
|
4799
4769
|
const _args: any[] = [];
|
4800
4770
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4807,7 +4777,7 @@ export namespace staking_pool {
|
|
4807
4777
|
}
|
4808
4778
|
export function processPendingStakesAndWithdraws(
|
4809
4779
|
tx: Transaction,
|
4810
|
-
args: [string | TransactionObjectArgument
|
4780
|
+
args: [string | TransactionObjectArgument],
|
4811
4781
|
): TransactionArgument & [TransactionArgument] {
|
4812
4782
|
const _args: any[] = [];
|
4813
4783
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4821,7 +4791,7 @@ export namespace staking_pool {
|
|
4821
4791
|
export function requestAddStake(
|
4822
4792
|
tx: Transaction,
|
4823
4793
|
args: [
|
4824
|
-
string | TransactionObjectArgument
|
4794
|
+
string | TransactionObjectArgument,
|
4825
4795
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
4826
4796
|
bigint | TransactionArgument,
|
4827
4797
|
],
|
@@ -4841,7 +4811,7 @@ export namespace staking_pool {
|
|
4841
4811
|
export function requestWithdrawStake(
|
4842
4812
|
tx: Transaction,
|
4843
4813
|
args: [
|
4844
|
-
string | TransactionObjectArgument
|
4814
|
+
string | TransactionObjectArgument,
|
4845
4815
|
staking_pool.StakedIota | TransactionArgument,
|
4846
4816
|
],
|
4847
4817
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -4857,10 +4827,7 @@ export namespace staking_pool {
|
|
4857
4827
|
}
|
4858
4828
|
export function split(
|
4859
4829
|
tx: Transaction,
|
4860
|
-
args: [
|
4861
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4862
|
-
bigint | TransactionArgument,
|
4863
|
-
],
|
4830
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
4864
4831
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
4865
4832
|
const _args: any[] = [];
|
4866
4833
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4874,10 +4841,7 @@ export namespace staking_pool {
|
|
4874
4841
|
}
|
4875
4842
|
export function splitStakedIota(
|
4876
4843
|
tx: Transaction,
|
4877
|
-
args: [
|
4878
|
-
string | TransactionObjectArgument | TransactionArgument,
|
4879
|
-
bigint | TransactionArgument,
|
4880
|
-
],
|
4844
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
4881
4845
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
4882
4846
|
const _args: any[] = [];
|
4883
4847
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4891,7 +4855,7 @@ export namespace staking_pool {
|
|
4891
4855
|
}
|
4892
4856
|
export function stakeActivationEpoch(
|
4893
4857
|
tx: Transaction,
|
4894
|
-
args: [string | TransactionObjectArgument
|
4858
|
+
args: [string | TransactionObjectArgument],
|
4895
4859
|
): TransactionArgument & [TransactionArgument] {
|
4896
4860
|
const _args: any[] = [];
|
4897
4861
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4904,7 +4868,7 @@ export namespace staking_pool {
|
|
4904
4868
|
}
|
4905
4869
|
export function stakedIotaAmount(
|
4906
4870
|
tx: Transaction,
|
4907
|
-
args: [string | TransactionObjectArgument
|
4871
|
+
args: [string | TransactionObjectArgument],
|
4908
4872
|
): TransactionArgument & [TransactionArgument] {
|
4909
4873
|
const _args: any[] = [];
|
4910
4874
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -4918,7 +4882,7 @@ export namespace staking_pool {
|
|
4918
4882
|
export function withdrawFromPrincipal(
|
4919
4883
|
tx: Transaction,
|
4920
4884
|
args: [
|
4921
|
-
string | TransactionObjectArgument
|
4885
|
+
string | TransactionObjectArgument,
|
4922
4886
|
staking_pool.StakedIota | TransactionArgument,
|
4923
4887
|
],
|
4924
4888
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -5361,7 +5325,7 @@ export namespace storage_fund {
|
|
5361
5325
|
export function advanceEpoch(
|
5362
5326
|
tx: Transaction,
|
5363
5327
|
args: [
|
5364
|
-
string | TransactionObjectArgument
|
5328
|
+
string | TransactionObjectArgument,
|
5365
5329
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
5366
5330
|
bigint | TransactionArgument,
|
5367
5331
|
bigint | TransactionArgument,
|
@@ -5400,7 +5364,7 @@ export namespace storage_fund {
|
|
5400
5364
|
}
|
5401
5365
|
export function totalBalance(
|
5402
5366
|
tx: Transaction,
|
5403
|
-
args: [string | TransactionObjectArgument
|
5367
|
+
args: [string | TransactionObjectArgument],
|
5404
5368
|
): TransactionArgument & [TransactionArgument] {
|
5405
5369
|
const _args: any[] = [];
|
5406
5370
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5413,7 +5377,7 @@ export namespace storage_fund {
|
|
5413
5377
|
}
|
5414
5378
|
export function totalObjectStorageRebates(
|
5415
5379
|
tx: Transaction,
|
5416
|
-
args: [string | TransactionObjectArgument
|
5380
|
+
args: [string | TransactionObjectArgument],
|
5417
5381
|
): TransactionArgument & [TransactionArgument] {
|
5418
5382
|
const _args: any[] = [];
|
5419
5383
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5639,7 +5603,7 @@ export namespace timelocked_staking {
|
|
5639
5603
|
export namespace builder {
|
5640
5604
|
export function expirationTimestampMs(
|
5641
5605
|
tx: Transaction,
|
5642
|
-
args: [string | TransactionObjectArgument
|
5606
|
+
args: [string | TransactionObjectArgument],
|
5643
5607
|
): TransactionArgument & [TransactionArgument] {
|
5644
5608
|
const _args: any[] = [];
|
5645
5609
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5653,8 +5617,8 @@ export namespace timelocked_staking {
|
|
5653
5617
|
export function isEqualStakingMetadata(
|
5654
5618
|
tx: Transaction,
|
5655
5619
|
args: [
|
5656
|
-
string | TransactionObjectArgument
|
5657
|
-
string | TransactionObjectArgument
|
5620
|
+
string | TransactionObjectArgument,
|
5621
|
+
string | TransactionObjectArgument,
|
5658
5622
|
],
|
5659
5623
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
5660
5624
|
const _args: any[] = [];
|
@@ -5669,7 +5633,7 @@ export namespace timelocked_staking {
|
|
5669
5633
|
}
|
5670
5634
|
export function isLabeledWith<T0 = any>(
|
5671
5635
|
tx: Transaction,
|
5672
|
-
args: [string | TransactionObjectArgument
|
5636
|
+
args: [string | TransactionObjectArgument],
|
5673
5637
|
typeArguments: [TypeDescriptor<T0> | string],
|
5674
5638
|
): TransactionArgument & [TransactionArgument] {
|
5675
5639
|
const _args: any[] = [];
|
@@ -5689,7 +5653,7 @@ export namespace timelocked_staking {
|
|
5689
5653
|
export function joinStakedIota(
|
5690
5654
|
tx: Transaction,
|
5691
5655
|
args: [
|
5692
|
-
string | TransactionObjectArgument
|
5656
|
+
string | TransactionObjectArgument,
|
5693
5657
|
timelocked_staking.TimelockedStakedIota | TransactionArgument,
|
5694
5658
|
],
|
5695
5659
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -5705,7 +5669,7 @@ export namespace timelocked_staking {
|
|
5705
5669
|
}
|
5706
5670
|
export function label(
|
5707
5671
|
tx: Transaction,
|
5708
|
-
args: [string | TransactionObjectArgument
|
5672
|
+
args: [string | TransactionObjectArgument],
|
5709
5673
|
): TransactionArgument & [TransactionArgument] {
|
5710
5674
|
const _args: any[] = [];
|
5711
5675
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5718,7 +5682,7 @@ export namespace timelocked_staking {
|
|
5718
5682
|
}
|
5719
5683
|
export function poolId(
|
5720
5684
|
tx: Transaction,
|
5721
|
-
args: [string | TransactionObjectArgument
|
5685
|
+
args: [string | TransactionObjectArgument],
|
5722
5686
|
): TransactionArgument & [TransactionArgument] {
|
5723
5687
|
const _args: any[] = [];
|
5724
5688
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5732,7 +5696,7 @@ export namespace timelocked_staking {
|
|
5732
5696
|
export function requestAddStake(
|
5733
5697
|
tx: Transaction,
|
5734
5698
|
args: [
|
5735
|
-
string | TransactionObjectArgument
|
5699
|
+
string | TransactionObjectArgument,
|
5736
5700
|
(
|
5737
5701
|
| _0x2.timelock.TimeLock<_0x2.balance.Balance<_0x2.iota.IOTA>>
|
5738
5702
|
| TransactionArgument
|
@@ -5755,7 +5719,7 @@ export namespace timelocked_staking {
|
|
5755
5719
|
export function requestAddStakeAtGenesis(
|
5756
5720
|
tx: Transaction,
|
5757
5721
|
args: [
|
5758
|
-
string | TransactionObjectArgument
|
5722
|
+
string | TransactionObjectArgument,
|
5759
5723
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
5760
5724
|
string | TransactionArgument,
|
5761
5725
|
bigint | TransactionArgument,
|
@@ -5785,7 +5749,7 @@ export namespace timelocked_staking {
|
|
5785
5749
|
export function requestAddStakeMulBal(
|
5786
5750
|
tx: Transaction,
|
5787
5751
|
args: [
|
5788
|
-
string | TransactionObjectArgument
|
5752
|
+
string | TransactionObjectArgument,
|
5789
5753
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
5790
5754
|
string | TransactionArgument,
|
5791
5755
|
],
|
@@ -5805,7 +5769,7 @@ export namespace timelocked_staking {
|
|
5805
5769
|
export function requestAddStakeMulBalNonEntry(
|
5806
5770
|
tx: Transaction,
|
5807
5771
|
args: [
|
5808
|
-
string | TransactionObjectArgument
|
5772
|
+
string | TransactionObjectArgument,
|
5809
5773
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
5810
5774
|
string | TransactionArgument,
|
5811
5775
|
],
|
@@ -5825,7 +5789,7 @@ export namespace timelocked_staking {
|
|
5825
5789
|
export function requestAddStakeNonEntry(
|
5826
5790
|
tx: Transaction,
|
5827
5791
|
args: [
|
5828
|
-
string | TransactionObjectArgument
|
5792
|
+
string | TransactionObjectArgument,
|
5829
5793
|
(
|
5830
5794
|
| _0x2.timelock.TimeLock<_0x2.balance.Balance<_0x2.iota.IOTA>>
|
5831
5795
|
| TransactionArgument
|
@@ -5848,7 +5812,7 @@ export namespace timelocked_staking {
|
|
5848
5812
|
export function requestWithdrawStake(
|
5849
5813
|
tx: Transaction,
|
5850
5814
|
args: [
|
5851
|
-
string | TransactionObjectArgument
|
5815
|
+
string | TransactionObjectArgument,
|
5852
5816
|
timelocked_staking.TimelockedStakedIota | TransactionArgument,
|
5853
5817
|
],
|
5854
5818
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -5865,7 +5829,7 @@ export namespace timelocked_staking {
|
|
5865
5829
|
export function requestWithdrawStakeNonEntry(
|
5866
5830
|
tx: Transaction,
|
5867
5831
|
args: [
|
5868
|
-
string | TransactionObjectArgument
|
5832
|
+
string | TransactionObjectArgument,
|
5869
5833
|
timelocked_staking.TimelockedStakedIota | TransactionArgument,
|
5870
5834
|
],
|
5871
5835
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -5881,10 +5845,7 @@ export namespace timelocked_staking {
|
|
5881
5845
|
}
|
5882
5846
|
export function split(
|
5883
5847
|
tx: Transaction,
|
5884
|
-
args: [
|
5885
|
-
string | TransactionObjectArgument | TransactionArgument,
|
5886
|
-
bigint | TransactionArgument,
|
5887
|
-
],
|
5848
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
5888
5849
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
5889
5850
|
const _args: any[] = [];
|
5890
5851
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5898,10 +5859,7 @@ export namespace timelocked_staking {
|
|
5898
5859
|
}
|
5899
5860
|
export function splitStakedIota(
|
5900
5861
|
tx: Transaction,
|
5901
|
-
args: [
|
5902
|
-
string | TransactionObjectArgument | TransactionArgument,
|
5903
|
-
bigint | TransactionArgument,
|
5904
|
-
],
|
5862
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
5905
5863
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
5906
5864
|
const _args: any[] = [];
|
5907
5865
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5915,7 +5873,7 @@ export namespace timelocked_staking {
|
|
5915
5873
|
}
|
5916
5874
|
export function stakeActivationEpoch(
|
5917
5875
|
tx: Transaction,
|
5918
|
-
args: [string | TransactionObjectArgument
|
5876
|
+
args: [string | TransactionObjectArgument],
|
5919
5877
|
): TransactionArgument & [TransactionArgument] {
|
5920
5878
|
const _args: any[] = [];
|
5921
5879
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5928,7 +5886,7 @@ export namespace timelocked_staking {
|
|
5928
5886
|
}
|
5929
5887
|
export function stakedIotaAmount(
|
5930
5888
|
tx: Transaction,
|
5931
|
-
args: [string | TransactionObjectArgument
|
5889
|
+
args: [string | TransactionObjectArgument],
|
5932
5890
|
): TransactionArgument & [TransactionArgument] {
|
5933
5891
|
const _args: any[] = [];
|
5934
5892
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -5965,6 +5923,36 @@ export namespace timelocked_staking {
|
|
5965
5923
|
arguments: _args,
|
5966
5924
|
});
|
5967
5925
|
}
|
5926
|
+
export function unlock(
|
5927
|
+
tx: Transaction,
|
5928
|
+
args: [timelocked_staking.TimelockedStakedIota | TransactionArgument],
|
5929
|
+
): TransactionArgument & [TransactionArgument] {
|
5930
|
+
const _args: any[] = [];
|
5931
|
+
_args.push(transactionArgumentOrPure(args[0], tx));
|
5932
|
+
|
5933
|
+
// @ts-ignore
|
5934
|
+
return tx.moveCall({
|
5935
|
+
target: "0x3::timelocked_staking::unlock",
|
5936
|
+
arguments: _args,
|
5937
|
+
});
|
5938
|
+
}
|
5939
|
+
export function unlockWithClock(
|
5940
|
+
tx: Transaction,
|
5941
|
+
args: [
|
5942
|
+
timelocked_staking.TimelockedStakedIota | TransactionArgument,
|
5943
|
+
string | TransactionObjectArgument,
|
5944
|
+
],
|
5945
|
+
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
5946
|
+
const _args: any[] = [];
|
5947
|
+
_args.push(transactionArgumentOrPure(args[0], tx));
|
5948
|
+
_args.push(transactionArgumentOrObject(args[1], tx));
|
5949
|
+
|
5950
|
+
// @ts-ignore
|
5951
|
+
return tx.moveCall({
|
5952
|
+
target: "0x3::timelocked_staking::unlock_with_clock",
|
5953
|
+
arguments: _args,
|
5954
|
+
});
|
5955
|
+
}
|
5968
5956
|
}
|
5969
5957
|
export namespace view {
|
5970
5958
|
export async function expirationTimestampMs(
|
@@ -6283,6 +6271,36 @@ export namespace timelocked_staking {
|
|
6283
6271
|
inspectRes,
|
6284
6272
|
);
|
6285
6273
|
}
|
6274
|
+
export async function unlock(
|
6275
|
+
client: IotaClient,
|
6276
|
+
args: [timelocked_staking.TimelockedStakedIota],
|
6277
|
+
): Promise<TypedDevInspectResults<[staking_pool.StakedIota]>> {
|
6278
|
+
const tx = new Transaction();
|
6279
|
+
builder.unlock(tx, args);
|
6280
|
+
const inspectRes = await client.devInspectTransactionBlock({
|
6281
|
+
transactionBlock: tx,
|
6282
|
+
sender: ZERO_ADDRESS,
|
6283
|
+
});
|
6284
|
+
|
6285
|
+
return (await getMoveCoder(client)).decodeDevInspectResult<
|
6286
|
+
[staking_pool.StakedIota]
|
6287
|
+
>(inspectRes);
|
6288
|
+
}
|
6289
|
+
export async function unlockWithClock(
|
6290
|
+
client: IotaClient,
|
6291
|
+
args: [timelocked_staking.TimelockedStakedIota, string],
|
6292
|
+
): Promise<TypedDevInspectResults<[staking_pool.StakedIota]>> {
|
6293
|
+
const tx = new Transaction();
|
6294
|
+
builder.unlockWithClock(tx, args);
|
6295
|
+
const inspectRes = await client.devInspectTransactionBlock({
|
6296
|
+
transactionBlock: tx,
|
6297
|
+
sender: ZERO_ADDRESS,
|
6298
|
+
});
|
6299
|
+
|
6300
|
+
return (await getMoveCoder(client)).decodeDevInspectResult<
|
6301
|
+
[staking_pool.StakedIota]
|
6302
|
+
>(inspectRes);
|
6303
|
+
}
|
6286
6304
|
}
|
6287
6305
|
|
6288
6306
|
export interface JoinStakedIotaPayload
|
@@ -6516,10 +6534,7 @@ export namespace validator {
|
|
6516
6534
|
export namespace builder {
|
6517
6535
|
export function activate(
|
6518
6536
|
tx: Transaction,
|
6519
|
-
args: [
|
6520
|
-
string | TransactionObjectArgument | TransactionArgument,
|
6521
|
-
bigint | TransactionArgument,
|
6522
|
-
],
|
6537
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
6523
6538
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
6524
6539
|
const _args: any[] = [];
|
6525
6540
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6533,7 +6548,7 @@ export namespace validator {
|
|
6533
6548
|
}
|
6534
6549
|
export function adjustNextEpochCommissionRate(
|
6535
6550
|
tx: Transaction,
|
6536
|
-
args: [string | TransactionObjectArgument
|
6551
|
+
args: [string | TransactionObjectArgument],
|
6537
6552
|
): TransactionArgument & [TransactionArgument] {
|
6538
6553
|
const _args: any[] = [];
|
6539
6554
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6546,7 +6561,7 @@ export namespace validator {
|
|
6546
6561
|
}
|
6547
6562
|
export function authorityPubkeyBytes(
|
6548
6563
|
tx: Transaction,
|
6549
|
-
args: [string | TransactionObjectArgument
|
6564
|
+
args: [string | TransactionObjectArgument],
|
6550
6565
|
): TransactionArgument & [TransactionArgument] {
|
6551
6566
|
const _args: any[] = [];
|
6552
6567
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6559,7 +6574,7 @@ export namespace validator {
|
|
6559
6574
|
}
|
6560
6575
|
export function commissionRate(
|
6561
6576
|
tx: Transaction,
|
6562
|
-
args: [string | TransactionObjectArgument
|
6577
|
+
args: [string | TransactionObjectArgument],
|
6563
6578
|
): TransactionArgument & [TransactionArgument] {
|
6564
6579
|
const _args: any[] = [];
|
6565
6580
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6572,10 +6587,7 @@ export namespace validator {
|
|
6572
6587
|
}
|
6573
6588
|
export function deactivate(
|
6574
6589
|
tx: Transaction,
|
6575
|
-
args: [
|
6576
|
-
string | TransactionObjectArgument | TransactionArgument,
|
6577
|
-
bigint | TransactionArgument,
|
6578
|
-
],
|
6590
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
6579
6591
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
6580
6592
|
const _args: any[] = [];
|
6581
6593
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6590,7 +6602,7 @@ export namespace validator {
|
|
6590
6602
|
export function depositStakeRewards(
|
6591
6603
|
tx: Transaction,
|
6592
6604
|
args: [
|
6593
|
-
string | TransactionObjectArgument
|
6605
|
+
string | TransactionObjectArgument,
|
6594
6606
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
6595
6607
|
],
|
6596
6608
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -6606,7 +6618,7 @@ export namespace validator {
|
|
6606
6618
|
}
|
6607
6619
|
export function description(
|
6608
6620
|
tx: Transaction,
|
6609
|
-
args: [string | TransactionObjectArgument
|
6621
|
+
args: [string | TransactionObjectArgument],
|
6610
6622
|
): TransactionArgument & [TransactionArgument] {
|
6611
6623
|
const _args: any[] = [];
|
6612
6624
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6619,7 +6631,7 @@ export namespace validator {
|
|
6619
6631
|
}
|
6620
6632
|
export function effectuateStagedMetadata(
|
6621
6633
|
tx: Transaction,
|
6622
|
-
args: [string | TransactionObjectArgument
|
6634
|
+
args: [string | TransactionObjectArgument],
|
6623
6635
|
): TransactionArgument & [TransactionArgument] {
|
6624
6636
|
const _args: any[] = [];
|
6625
6637
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6632,7 +6644,7 @@ export namespace validator {
|
|
6632
6644
|
}
|
6633
6645
|
export function gasPrice(
|
6634
6646
|
tx: Transaction,
|
6635
|
-
args: [string | TransactionObjectArgument
|
6647
|
+
args: [string | TransactionObjectArgument],
|
6636
6648
|
): TransactionArgument & [TransactionArgument] {
|
6637
6649
|
const _args: any[] = [];
|
6638
6650
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6645,7 +6657,7 @@ export namespace validator {
|
|
6645
6657
|
}
|
6646
6658
|
export function getStakingPoolRef(
|
6647
6659
|
tx: Transaction,
|
6648
|
-
args: [string | TransactionObjectArgument
|
6660
|
+
args: [string | TransactionObjectArgument],
|
6649
6661
|
): TransactionArgument & [TransactionArgument] {
|
6650
6662
|
const _args: any[] = [];
|
6651
6663
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6658,7 +6670,7 @@ export namespace validator {
|
|
6658
6670
|
}
|
6659
6671
|
export function imageUrl(
|
6660
6672
|
tx: Transaction,
|
6661
|
-
args: [string | TransactionObjectArgument
|
6673
|
+
args: [string | TransactionObjectArgument],
|
6662
6674
|
): TransactionArgument & [TransactionArgument] {
|
6663
6675
|
const _args: any[] = [];
|
6664
6676
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6671,7 +6683,7 @@ export namespace validator {
|
|
6671
6683
|
}
|
6672
6684
|
export function iotaAddress(
|
6673
6685
|
tx: Transaction,
|
6674
|
-
args: [string | TransactionObjectArgument
|
6686
|
+
args: [string | TransactionObjectArgument],
|
6675
6687
|
): TransactionArgument & [TransactionArgument] {
|
6676
6688
|
const _args: any[] = [];
|
6677
6689
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6685,8 +6697,8 @@ export namespace validator {
|
|
6685
6697
|
export function isDuplicate(
|
6686
6698
|
tx: Transaction,
|
6687
6699
|
args: [
|
6688
|
-
string | TransactionObjectArgument
|
6689
|
-
string | TransactionObjectArgument
|
6700
|
+
string | TransactionObjectArgument,
|
6701
|
+
string | TransactionObjectArgument,
|
6690
6702
|
],
|
6691
6703
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
6692
6704
|
const _args: any[] = [];
|
@@ -6701,7 +6713,7 @@ export namespace validator {
|
|
6701
6713
|
}
|
6702
6714
|
export function isPreactive(
|
6703
6715
|
tx: Transaction,
|
6704
|
-
args: [string | TransactionObjectArgument
|
6716
|
+
args: [string | TransactionObjectArgument],
|
6705
6717
|
): TransactionArgument & [TransactionArgument] {
|
6706
6718
|
const _args: any[] = [];
|
6707
6719
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6714,7 +6726,7 @@ export namespace validator {
|
|
6714
6726
|
}
|
6715
6727
|
export function metadata(
|
6716
6728
|
tx: Transaction,
|
6717
|
-
args: [string | TransactionObjectArgument
|
6729
|
+
args: [string | TransactionObjectArgument],
|
6718
6730
|
): TransactionArgument & [TransactionArgument] {
|
6719
6731
|
const _args: any[] = [];
|
6720
6732
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6727,7 +6739,7 @@ export namespace validator {
|
|
6727
6739
|
}
|
6728
6740
|
export function name(
|
6729
6741
|
tx: Transaction,
|
6730
|
-
args: [string | TransactionObjectArgument
|
6742
|
+
args: [string | TransactionObjectArgument],
|
6731
6743
|
): TransactionArgument & [TransactionArgument] {
|
6732
6744
|
const _args: any[] = [];
|
6733
6745
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6740,7 +6752,7 @@ export namespace validator {
|
|
6740
6752
|
}
|
6741
6753
|
export function networkAddress(
|
6742
6754
|
tx: Transaction,
|
6743
|
-
args: [string | TransactionObjectArgument
|
6755
|
+
args: [string | TransactionObjectArgument],
|
6744
6756
|
): TransactionArgument & [TransactionArgument] {
|
6745
6757
|
const _args: any[] = [];
|
6746
6758
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6753,7 +6765,7 @@ export namespace validator {
|
|
6753
6765
|
}
|
6754
6766
|
export function networkPubkeyBytes(
|
6755
6767
|
tx: Transaction,
|
6756
|
-
args: [string | TransactionObjectArgument
|
6768
|
+
args: [string | TransactionObjectArgument],
|
6757
6769
|
): TransactionArgument & [TransactionArgument] {
|
6758
6770
|
const _args: any[] = [];
|
6759
6771
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6877,7 +6889,7 @@ export namespace validator {
|
|
6877
6889
|
}
|
6878
6890
|
export function newUnverifiedValidatorOperationCapAndTransfer(
|
6879
6891
|
tx: Transaction,
|
6880
|
-
args: [string | TransactionObjectArgument
|
6892
|
+
args: [string | TransactionObjectArgument],
|
6881
6893
|
): TransactionArgument & [TransactionArgument] {
|
6882
6894
|
const _args: any[] = [];
|
6883
6895
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6891,7 +6903,7 @@ export namespace validator {
|
|
6891
6903
|
}
|
6892
6904
|
export function nextEpochAuthorityPubkeyBytes(
|
6893
6905
|
tx: Transaction,
|
6894
|
-
args: [string | TransactionObjectArgument
|
6906
|
+
args: [string | TransactionObjectArgument],
|
6895
6907
|
): TransactionArgument & [TransactionArgument] {
|
6896
6908
|
const _args: any[] = [];
|
6897
6909
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6904,7 +6916,7 @@ export namespace validator {
|
|
6904
6916
|
}
|
6905
6917
|
export function nextEpochGasPrice(
|
6906
6918
|
tx: Transaction,
|
6907
|
-
args: [string | TransactionObjectArgument
|
6919
|
+
args: [string | TransactionObjectArgument],
|
6908
6920
|
): TransactionArgument & [TransactionArgument] {
|
6909
6921
|
const _args: any[] = [];
|
6910
6922
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6917,7 +6929,7 @@ export namespace validator {
|
|
6917
6929
|
}
|
6918
6930
|
export function nextEpochNetworkAddress(
|
6919
6931
|
tx: Transaction,
|
6920
|
-
args: [string | TransactionObjectArgument
|
6932
|
+
args: [string | TransactionObjectArgument],
|
6921
6933
|
): TransactionArgument & [TransactionArgument] {
|
6922
6934
|
const _args: any[] = [];
|
6923
6935
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6930,7 +6942,7 @@ export namespace validator {
|
|
6930
6942
|
}
|
6931
6943
|
export function nextEpochNetworkPubkeyBytes(
|
6932
6944
|
tx: Transaction,
|
6933
|
-
args: [string | TransactionObjectArgument
|
6945
|
+
args: [string | TransactionObjectArgument],
|
6934
6946
|
): TransactionArgument & [TransactionArgument] {
|
6935
6947
|
const _args: any[] = [];
|
6936
6948
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6943,7 +6955,7 @@ export namespace validator {
|
|
6943
6955
|
}
|
6944
6956
|
export function nextEpochP2pAddress(
|
6945
6957
|
tx: Transaction,
|
6946
|
-
args: [string | TransactionObjectArgument
|
6958
|
+
args: [string | TransactionObjectArgument],
|
6947
6959
|
): TransactionArgument & [TransactionArgument] {
|
6948
6960
|
const _args: any[] = [];
|
6949
6961
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6956,7 +6968,7 @@ export namespace validator {
|
|
6956
6968
|
}
|
6957
6969
|
export function nextEpochPrimaryAddress(
|
6958
6970
|
tx: Transaction,
|
6959
|
-
args: [string | TransactionObjectArgument
|
6971
|
+
args: [string | TransactionObjectArgument],
|
6960
6972
|
): TransactionArgument & [TransactionArgument] {
|
6961
6973
|
const _args: any[] = [];
|
6962
6974
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6969,7 +6981,7 @@ export namespace validator {
|
|
6969
6981
|
}
|
6970
6982
|
export function nextEpochProofOfPossession(
|
6971
6983
|
tx: Transaction,
|
6972
|
-
args: [string | TransactionObjectArgument
|
6984
|
+
args: [string | TransactionObjectArgument],
|
6973
6985
|
): TransactionArgument & [TransactionArgument] {
|
6974
6986
|
const _args: any[] = [];
|
6975
6987
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6982,7 +6994,7 @@ export namespace validator {
|
|
6982
6994
|
}
|
6983
6995
|
export function nextEpochProtocolPubkeyBytes(
|
6984
6996
|
tx: Transaction,
|
6985
|
-
args: [string | TransactionObjectArgument
|
6997
|
+
args: [string | TransactionObjectArgument],
|
6986
6998
|
): TransactionArgument & [TransactionArgument] {
|
6987
6999
|
const _args: any[] = [];
|
6988
7000
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -6995,7 +7007,7 @@ export namespace validator {
|
|
6995
7007
|
}
|
6996
7008
|
export function nextEpochStake(
|
6997
7009
|
tx: Transaction,
|
6998
|
-
args: [string | TransactionObjectArgument
|
7010
|
+
args: [string | TransactionObjectArgument],
|
6999
7011
|
): TransactionArgument & [TransactionArgument] {
|
7000
7012
|
const _args: any[] = [];
|
7001
7013
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7008,7 +7020,7 @@ export namespace validator {
|
|
7008
7020
|
}
|
7009
7021
|
export function operationCapId(
|
7010
7022
|
tx: Transaction,
|
7011
|
-
args: [string | TransactionObjectArgument
|
7023
|
+
args: [string | TransactionObjectArgument],
|
7012
7024
|
): TransactionArgument & [TransactionArgument] {
|
7013
7025
|
const _args: any[] = [];
|
7014
7026
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7021,7 +7033,7 @@ export namespace validator {
|
|
7021
7033
|
}
|
7022
7034
|
export function p2pAddress(
|
7023
7035
|
tx: Transaction,
|
7024
|
-
args: [string | TransactionObjectArgument
|
7036
|
+
args: [string | TransactionObjectArgument],
|
7025
7037
|
): TransactionArgument & [TransactionArgument] {
|
7026
7038
|
const _args: any[] = [];
|
7027
7039
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7034,7 +7046,7 @@ export namespace validator {
|
|
7034
7046
|
}
|
7035
7047
|
export function pendingStakeAmount(
|
7036
7048
|
tx: Transaction,
|
7037
|
-
args: [string | TransactionObjectArgument
|
7049
|
+
args: [string | TransactionObjectArgument],
|
7038
7050
|
): TransactionArgument & [TransactionArgument] {
|
7039
7051
|
const _args: any[] = [];
|
7040
7052
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7047,7 +7059,7 @@ export namespace validator {
|
|
7047
7059
|
}
|
7048
7060
|
export function pendingStakeWithdrawAmount(
|
7049
7061
|
tx: Transaction,
|
7050
|
-
args: [string | TransactionObjectArgument
|
7062
|
+
args: [string | TransactionObjectArgument],
|
7051
7063
|
): TransactionArgument & [TransactionArgument] {
|
7052
7064
|
const _args: any[] = [];
|
7053
7065
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7060,10 +7072,7 @@ export namespace validator {
|
|
7060
7072
|
}
|
7061
7073
|
export function poolTokenExchangeRateAtEpoch(
|
7062
7074
|
tx: Transaction,
|
7063
|
-
args: [
|
7064
|
-
string | TransactionObjectArgument | TransactionArgument,
|
7065
|
-
bigint | TransactionArgument,
|
7066
|
-
],
|
7075
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
7067
7076
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
7068
7077
|
const _args: any[] = [];
|
7069
7078
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7077,7 +7086,7 @@ export namespace validator {
|
|
7077
7086
|
}
|
7078
7087
|
export function primaryAddress(
|
7079
7088
|
tx: Transaction,
|
7080
|
-
args: [string | TransactionObjectArgument
|
7089
|
+
args: [string | TransactionObjectArgument],
|
7081
7090
|
): TransactionArgument & [TransactionArgument] {
|
7082
7091
|
const _args: any[] = [];
|
7083
7092
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7090,7 +7099,7 @@ export namespace validator {
|
|
7090
7099
|
}
|
7091
7100
|
export function processPendingStakesAndWithdraws(
|
7092
7101
|
tx: Transaction,
|
7093
|
-
args: [string | TransactionObjectArgument
|
7102
|
+
args: [string | TransactionObjectArgument],
|
7094
7103
|
): TransactionArgument & [TransactionArgument] {
|
7095
7104
|
const _args: any[] = [];
|
7096
7105
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7103,7 +7112,7 @@ export namespace validator {
|
|
7103
7112
|
}
|
7104
7113
|
export function projectUrl(
|
7105
7114
|
tx: Transaction,
|
7106
|
-
args: [string | TransactionObjectArgument
|
7115
|
+
args: [string | TransactionObjectArgument],
|
7107
7116
|
): TransactionArgument & [TransactionArgument] {
|
7108
7117
|
const _args: any[] = [];
|
7109
7118
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7116,7 +7125,7 @@ export namespace validator {
|
|
7116
7125
|
}
|
7117
7126
|
export function proofOfPossession(
|
7118
7127
|
tx: Transaction,
|
7119
|
-
args: [string | TransactionObjectArgument
|
7128
|
+
args: [string | TransactionObjectArgument],
|
7120
7129
|
): TransactionArgument & [TransactionArgument] {
|
7121
7130
|
const _args: any[] = [];
|
7122
7131
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7129,7 +7138,7 @@ export namespace validator {
|
|
7129
7138
|
}
|
7130
7139
|
export function protocolPubkeyBytes(
|
7131
7140
|
tx: Transaction,
|
7132
|
-
args: [string | TransactionObjectArgument
|
7141
|
+
args: [string | TransactionObjectArgument],
|
7133
7142
|
): TransactionArgument & [TransactionArgument] {
|
7134
7143
|
const _args: any[] = [];
|
7135
7144
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7143,7 +7152,7 @@ export namespace validator {
|
|
7143
7152
|
export function requestAddStake(
|
7144
7153
|
tx: Transaction,
|
7145
7154
|
args: [
|
7146
|
-
string | TransactionObjectArgument
|
7155
|
+
string | TransactionObjectArgument,
|
7147
7156
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
7148
7157
|
string | TransactionArgument,
|
7149
7158
|
],
|
@@ -7163,7 +7172,7 @@ export namespace validator {
|
|
7163
7172
|
export function requestAddStakeAtGenesis(
|
7164
7173
|
tx: Transaction,
|
7165
7174
|
args: [
|
7166
|
-
string | TransactionObjectArgument
|
7175
|
+
string | TransactionObjectArgument,
|
7167
7176
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
7168
7177
|
string | TransactionArgument,
|
7169
7178
|
],
|
@@ -7183,7 +7192,7 @@ export namespace validator {
|
|
7183
7192
|
export function requestAddStakeAtGenesisWithReceipt(
|
7184
7193
|
tx: Transaction,
|
7185
7194
|
args: [
|
7186
|
-
string | TransactionObjectArgument
|
7195
|
+
string | TransactionObjectArgument,
|
7187
7196
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
7188
7197
|
],
|
7189
7198
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7199,10 +7208,7 @@ export namespace validator {
|
|
7199
7208
|
}
|
7200
7209
|
export function requestSetCommissionRate(
|
7201
7210
|
tx: Transaction,
|
7202
|
-
args: [
|
7203
|
-
string | TransactionObjectArgument | TransactionArgument,
|
7204
|
-
bigint | TransactionArgument,
|
7205
|
-
],
|
7211
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
7206
7212
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
7207
7213
|
const _args: any[] = [];
|
7208
7214
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7217,7 +7223,7 @@ export namespace validator {
|
|
7217
7223
|
export function requestWithdrawStake(
|
7218
7224
|
tx: Transaction,
|
7219
7225
|
args: [
|
7220
|
-
string | TransactionObjectArgument
|
7226
|
+
string | TransactionObjectArgument,
|
7221
7227
|
staking_pool.StakedIota | TransactionArgument,
|
7222
7228
|
],
|
7223
7229
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7233,10 +7239,7 @@ export namespace validator {
|
|
7233
7239
|
}
|
7234
7240
|
export function setCandidateCommissionRate(
|
7235
7241
|
tx: Transaction,
|
7236
|
-
args: [
|
7237
|
-
string | TransactionObjectArgument | TransactionArgument,
|
7238
|
-
bigint | TransactionArgument,
|
7239
|
-
],
|
7242
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
7240
7243
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
7241
7244
|
const _args: any[] = [];
|
7242
7245
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7250,10 +7253,7 @@ export namespace validator {
|
|
7250
7253
|
}
|
7251
7254
|
export function setVotingPower(
|
7252
7255
|
tx: Transaction,
|
7253
|
-
args: [
|
7254
|
-
string | TransactionObjectArgument | TransactionArgument,
|
7255
|
-
bigint | TransactionArgument,
|
7256
|
-
],
|
7256
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
7257
7257
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
7258
7258
|
const _args: any[] = [];
|
7259
7259
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7268,8 +7268,8 @@ export namespace validator {
|
|
7268
7268
|
export function smallerThan(
|
7269
7269
|
tx: Transaction,
|
7270
7270
|
args: [
|
7271
|
-
string | TransactionObjectArgument
|
7272
|
-
string | TransactionObjectArgument
|
7271
|
+
string | TransactionObjectArgument,
|
7272
|
+
string | TransactionObjectArgument,
|
7273
7273
|
],
|
7274
7274
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
7275
7275
|
const _args: any[] = [];
|
@@ -7284,7 +7284,7 @@ export namespace validator {
|
|
7284
7284
|
}
|
7285
7285
|
export function stakeAmount(
|
7286
7286
|
tx: Transaction,
|
7287
|
-
args: [string | TransactionObjectArgument
|
7287
|
+
args: [string | TransactionObjectArgument],
|
7288
7288
|
): TransactionArgument & [TransactionArgument] {
|
7289
7289
|
const _args: any[] = [];
|
7290
7290
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7297,7 +7297,7 @@ export namespace validator {
|
|
7297
7297
|
}
|
7298
7298
|
export function stakingPoolId(
|
7299
7299
|
tx: Transaction,
|
7300
|
-
args: [string | TransactionObjectArgument
|
7300
|
+
args: [string | TransactionObjectArgument],
|
7301
7301
|
): TransactionArgument & [TransactionArgument] {
|
7302
7302
|
const _args: any[] = [];
|
7303
7303
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7310,7 +7310,7 @@ export namespace validator {
|
|
7310
7310
|
}
|
7311
7311
|
export function totalStake(
|
7312
7312
|
tx: Transaction,
|
7313
|
-
args: [string | TransactionObjectArgument
|
7313
|
+
args: [string | TransactionObjectArgument],
|
7314
7314
|
): TransactionArgument & [TransactionArgument] {
|
7315
7315
|
const _args: any[] = [];
|
7316
7316
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7323,7 +7323,7 @@ export namespace validator {
|
|
7323
7323
|
}
|
7324
7324
|
export function totalStakeAmount(
|
7325
7325
|
tx: Transaction,
|
7326
|
-
args: [string | TransactionObjectArgument
|
7326
|
+
args: [string | TransactionObjectArgument],
|
7327
7327
|
): TransactionArgument & [TransactionArgument] {
|
7328
7328
|
const _args: any[] = [];
|
7329
7329
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7337,7 +7337,7 @@ export namespace validator {
|
|
7337
7337
|
export function updateCandidateAuthorityPubkey(
|
7338
7338
|
tx: Transaction,
|
7339
7339
|
args: [
|
7340
|
-
string | TransactionObjectArgument
|
7340
|
+
string | TransactionObjectArgument,
|
7341
7341
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7342
7342
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7343
7343
|
],
|
@@ -7357,7 +7357,7 @@ export namespace validator {
|
|
7357
7357
|
export function updateCandidateNetworkAddress(
|
7358
7358
|
tx: Transaction,
|
7359
7359
|
args: [
|
7360
|
-
string | TransactionObjectArgument
|
7360
|
+
string | TransactionObjectArgument,
|
7361
7361
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7362
7362
|
],
|
7363
7363
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7374,7 +7374,7 @@ export namespace validator {
|
|
7374
7374
|
export function updateCandidateNetworkPubkey(
|
7375
7375
|
tx: Transaction,
|
7376
7376
|
args: [
|
7377
|
-
string | TransactionObjectArgument
|
7377
|
+
string | TransactionObjectArgument,
|
7378
7378
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7379
7379
|
],
|
7380
7380
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7391,7 +7391,7 @@ export namespace validator {
|
|
7391
7391
|
export function updateCandidateP2pAddress(
|
7392
7392
|
tx: Transaction,
|
7393
7393
|
args: [
|
7394
|
-
string | TransactionObjectArgument
|
7394
|
+
string | TransactionObjectArgument,
|
7395
7395
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7396
7396
|
],
|
7397
7397
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7408,7 +7408,7 @@ export namespace validator {
|
|
7408
7408
|
export function updateCandidatePrimaryAddress(
|
7409
7409
|
tx: Transaction,
|
7410
7410
|
args: [
|
7411
|
-
string | TransactionObjectArgument
|
7411
|
+
string | TransactionObjectArgument,
|
7412
7412
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7413
7413
|
],
|
7414
7414
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7425,7 +7425,7 @@ export namespace validator {
|
|
7425
7425
|
export function updateCandidateProtocolPubkey(
|
7426
7426
|
tx: Transaction,
|
7427
7427
|
args: [
|
7428
|
-
string | TransactionObjectArgument
|
7428
|
+
string | TransactionObjectArgument,
|
7429
7429
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7430
7430
|
],
|
7431
7431
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7442,7 +7442,7 @@ export namespace validator {
|
|
7442
7442
|
export function updateDescription(
|
7443
7443
|
tx: Transaction,
|
7444
7444
|
args: [
|
7445
|
-
string | TransactionObjectArgument
|
7445
|
+
string | TransactionObjectArgument,
|
7446
7446
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7447
7447
|
],
|
7448
7448
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7459,7 +7459,7 @@ export namespace validator {
|
|
7459
7459
|
export function updateImageUrl(
|
7460
7460
|
tx: Transaction,
|
7461
7461
|
args: [
|
7462
|
-
string | TransactionObjectArgument
|
7462
|
+
string | TransactionObjectArgument,
|
7463
7463
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7464
7464
|
],
|
7465
7465
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7476,7 +7476,7 @@ export namespace validator {
|
|
7476
7476
|
export function updateName(
|
7477
7477
|
tx: Transaction,
|
7478
7478
|
args: [
|
7479
|
-
string | TransactionObjectArgument
|
7479
|
+
string | TransactionObjectArgument,
|
7480
7480
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7481
7481
|
],
|
7482
7482
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7493,7 +7493,7 @@ export namespace validator {
|
|
7493
7493
|
export function updateNextEpochAuthorityPubkey(
|
7494
7494
|
tx: Transaction,
|
7495
7495
|
args: [
|
7496
|
-
string | TransactionObjectArgument
|
7496
|
+
string | TransactionObjectArgument,
|
7497
7497
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7498
7498
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7499
7499
|
],
|
@@ -7513,7 +7513,7 @@ export namespace validator {
|
|
7513
7513
|
export function updateNextEpochNetworkAddress(
|
7514
7514
|
tx: Transaction,
|
7515
7515
|
args: [
|
7516
|
-
string | TransactionObjectArgument
|
7516
|
+
string | TransactionObjectArgument,
|
7517
7517
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7518
7518
|
],
|
7519
7519
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7530,7 +7530,7 @@ export namespace validator {
|
|
7530
7530
|
export function updateNextEpochNetworkPubkey(
|
7531
7531
|
tx: Transaction,
|
7532
7532
|
args: [
|
7533
|
-
string | TransactionObjectArgument
|
7533
|
+
string | TransactionObjectArgument,
|
7534
7534
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7535
7535
|
],
|
7536
7536
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7547,7 +7547,7 @@ export namespace validator {
|
|
7547
7547
|
export function updateNextEpochP2pAddress(
|
7548
7548
|
tx: Transaction,
|
7549
7549
|
args: [
|
7550
|
-
string | TransactionObjectArgument
|
7550
|
+
string | TransactionObjectArgument,
|
7551
7551
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7552
7552
|
],
|
7553
7553
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7564,7 +7564,7 @@ export namespace validator {
|
|
7564
7564
|
export function updateNextEpochPrimaryAddress(
|
7565
7565
|
tx: Transaction,
|
7566
7566
|
args: [
|
7567
|
-
string | TransactionObjectArgument
|
7567
|
+
string | TransactionObjectArgument,
|
7568
7568
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7569
7569
|
],
|
7570
7570
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7581,7 +7581,7 @@ export namespace validator {
|
|
7581
7581
|
export function updateNextEpochProtocolPubkey(
|
7582
7582
|
tx: Transaction,
|
7583
7583
|
args: [
|
7584
|
-
string | TransactionObjectArgument
|
7584
|
+
string | TransactionObjectArgument,
|
7585
7585
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7586
7586
|
],
|
7587
7587
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7598,7 +7598,7 @@ export namespace validator {
|
|
7598
7598
|
export function updateProjectUrl(
|
7599
7599
|
tx: Transaction,
|
7600
7600
|
args: [
|
7601
|
-
string | TransactionObjectArgument
|
7601
|
+
string | TransactionObjectArgument,
|
7602
7602
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
7603
7603
|
],
|
7604
7604
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -7614,7 +7614,7 @@ export namespace validator {
|
|
7614
7614
|
}
|
7615
7615
|
export function validateMetadata(
|
7616
7616
|
tx: Transaction,
|
7617
|
-
args: [string | TransactionObjectArgument
|
7617
|
+
args: [string | TransactionObjectArgument],
|
7618
7618
|
): TransactionArgument & [TransactionArgument] {
|
7619
7619
|
const _args: any[] = [];
|
7620
7620
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -7640,7 +7640,7 @@ export namespace validator {
|
|
7640
7640
|
}
|
7641
7641
|
export function votingPower(
|
7642
7642
|
tx: Transaction,
|
7643
|
-
args: [string | TransactionObjectArgument
|
7643
|
+
args: [string | TransactionObjectArgument],
|
7644
7644
|
): TransactionArgument & [TransactionArgument] {
|
7645
7645
|
const _args: any[] = [];
|
7646
7646
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -8788,7 +8788,7 @@ export namespace validator_cap {
|
|
8788
8788
|
export namespace builder {
|
8789
8789
|
export function newFromUnverified(
|
8790
8790
|
tx: Transaction,
|
8791
|
-
args: [string | TransactionObjectArgument
|
8791
|
+
args: [string | TransactionObjectArgument],
|
8792
8792
|
): TransactionArgument & [TransactionArgument] {
|
8793
8793
|
const _args: any[] = [];
|
8794
8794
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -8815,7 +8815,7 @@ export namespace validator_cap {
|
|
8815
8815
|
}
|
8816
8816
|
export function unverifiedOperationCapAddress(
|
8817
8817
|
tx: Transaction,
|
8818
|
-
args: [string | TransactionObjectArgument
|
8818
|
+
args: [string | TransactionObjectArgument],
|
8819
8819
|
): TransactionArgument & [TransactionArgument] {
|
8820
8820
|
const _args: any[] = [];
|
8821
8821
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -8828,7 +8828,7 @@ export namespace validator_cap {
|
|
8828
8828
|
}
|
8829
8829
|
export function verifiedOperationCapAddress(
|
8830
8830
|
tx: Transaction,
|
8831
|
-
args: [string | TransactionObjectArgument
|
8831
|
+
args: [string | TransactionObjectArgument],
|
8832
8832
|
): TransactionArgument & [TransactionArgument] {
|
8833
8833
|
const _args: any[] = [];
|
8834
8834
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9206,7 +9206,7 @@ export namespace validator_set {
|
|
9206
9206
|
export namespace builder {
|
9207
9207
|
export function activeValidatorAddresses(
|
9208
9208
|
tx: Transaction,
|
9209
|
-
args: [string | TransactionObjectArgument
|
9209
|
+
args: [string | TransactionObjectArgument],
|
9210
9210
|
): TransactionArgument & [TransactionArgument] {
|
9211
9211
|
const _args: any[] = [];
|
9212
9212
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9219,7 +9219,7 @@ export namespace validator_set {
|
|
9219
9219
|
}
|
9220
9220
|
export function activeValidators(
|
9221
9221
|
tx: Transaction,
|
9222
|
-
args: [string | TransactionObjectArgument
|
9222
|
+
args: [string | TransactionObjectArgument],
|
9223
9223
|
): TransactionArgument & [TransactionArgument] {
|
9224
9224
|
const _args: any[] = [];
|
9225
9225
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9232,7 +9232,7 @@ export namespace validator_set {
|
|
9232
9232
|
}
|
9233
9233
|
export function activeValidatorsInner(
|
9234
9234
|
tx: Transaction,
|
9235
|
-
args: [string | TransactionObjectArgument
|
9235
|
+
args: [string | TransactionObjectArgument],
|
9236
9236
|
): TransactionArgument & [TransactionArgument] {
|
9237
9237
|
const _args: any[] = [];
|
9238
9238
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9246,9 +9246,9 @@ export namespace validator_set {
|
|
9246
9246
|
export function advanceEpoch(
|
9247
9247
|
tx: Transaction,
|
9248
9248
|
args: [
|
9249
|
-
string | TransactionObjectArgument
|
9250
|
-
string | TransactionObjectArgument
|
9251
|
-
string | TransactionObjectArgument
|
9249
|
+
string | TransactionObjectArgument,
|
9250
|
+
string | TransactionObjectArgument,
|
9251
|
+
string | TransactionObjectArgument,
|
9252
9252
|
bigint | TransactionArgument,
|
9253
9253
|
bigint | TransactionArgument,
|
9254
9254
|
bigint | TransactionArgument,
|
@@ -9285,8 +9285,8 @@ export namespace validator_set {
|
|
9285
9285
|
export function assertNoPendingOrActiveDuplicates(
|
9286
9286
|
tx: Transaction,
|
9287
9287
|
args: [
|
9288
|
-
string | TransactionObjectArgument
|
9289
|
-
string | TransactionObjectArgument
|
9288
|
+
string | TransactionObjectArgument,
|
9289
|
+
string | TransactionObjectArgument,
|
9290
9290
|
],
|
9291
9291
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9292
9292
|
const _args: any[] = [];
|
@@ -9301,7 +9301,7 @@ export namespace validator_set {
|
|
9301
9301
|
}
|
9302
9302
|
export function committeeValidatorAddresses(
|
9303
9303
|
tx: Transaction,
|
9304
|
-
args: [string | TransactionObjectArgument
|
9304
|
+
args: [string | TransactionObjectArgument],
|
9305
9305
|
): TransactionArgument & [TransactionArgument] {
|
9306
9306
|
const _args: any[] = [];
|
9307
9307
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9314,7 +9314,7 @@ export namespace validator_set {
|
|
9314
9314
|
}
|
9315
9315
|
export function deriveReferenceGasPrice(
|
9316
9316
|
tx: Transaction,
|
9317
|
-
args: [string | TransactionObjectArgument
|
9317
|
+
args: [string | TransactionObjectArgument],
|
9318
9318
|
): TransactionArgument & [TransactionArgument] {
|
9319
9319
|
const _args: any[] = [];
|
9320
9320
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9328,7 +9328,7 @@ export namespace validator_set {
|
|
9328
9328
|
export function getActiveOrPendingOrCandidateValidatorRef(
|
9329
9329
|
tx: Transaction,
|
9330
9330
|
args: [
|
9331
|
-
string | TransactionObjectArgument
|
9331
|
+
string | TransactionObjectArgument,
|
9332
9332
|
string | TransactionArgument,
|
9333
9333
|
number | TransactionArgument,
|
9334
9334
|
],
|
@@ -9348,10 +9348,7 @@ export namespace validator_set {
|
|
9348
9348
|
}
|
9349
9349
|
export function getActiveValidatorRef(
|
9350
9350
|
tx: Transaction,
|
9351
|
-
args: [
|
9352
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9353
|
-
string | TransactionArgument,
|
9354
|
-
],
|
9351
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9355
9352
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9356
9353
|
const _args: any[] = [];
|
9357
9354
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9365,10 +9362,7 @@ export namespace validator_set {
|
|
9365
9362
|
}
|
9366
9363
|
export function getActiveValidatorRefInner(
|
9367
9364
|
tx: Transaction,
|
9368
|
-
args: [
|
9369
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9370
|
-
string | TransactionArgument,
|
9371
|
-
],
|
9365
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9372
9366
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9373
9367
|
const _args: any[] = [];
|
9374
9368
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9382,10 +9376,7 @@ export namespace validator_set {
|
|
9382
9376
|
}
|
9383
9377
|
export function getCommitteeValidatorRefInner(
|
9384
9378
|
tx: Transaction,
|
9385
|
-
args: [
|
9386
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9387
|
-
string | TransactionArgument,
|
9388
|
-
],
|
9379
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9389
9380
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9390
9381
|
const _args: any[] = [];
|
9391
9382
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9399,10 +9390,7 @@ export namespace validator_set {
|
|
9399
9390
|
}
|
9400
9391
|
export function getPendingValidatorRef(
|
9401
9392
|
tx: Transaction,
|
9402
|
-
args: [
|
9403
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9404
|
-
string | TransactionArgument,
|
9405
|
-
],
|
9393
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9406
9394
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9407
9395
|
const _args: any[] = [];
|
9408
9396
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9416,10 +9404,7 @@ export namespace validator_set {
|
|
9416
9404
|
}
|
9417
9405
|
export function getPendingValidatorRefInner(
|
9418
9406
|
tx: Transaction,
|
9419
|
-
args: [
|
9420
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9421
|
-
string | TransactionArgument,
|
9422
|
-
],
|
9407
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9423
9408
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9424
9409
|
const _args: any[] = [];
|
9425
9410
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9433,10 +9418,7 @@ export namespace validator_set {
|
|
9433
9418
|
}
|
9434
9419
|
export function getValidatorMut(
|
9435
9420
|
tx: Transaction,
|
9436
|
-
args: [
|
9437
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9438
|
-
string | TransactionArgument,
|
9439
|
-
],
|
9421
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9440
9422
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9441
9423
|
const _args: any[] = [];
|
9442
9424
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9450,7 +9432,7 @@ export namespace validator_set {
|
|
9450
9432
|
}
|
9451
9433
|
export function getValidatorMutWithCtx(
|
9452
9434
|
tx: Transaction,
|
9453
|
-
args: [string | TransactionObjectArgument
|
9435
|
+
args: [string | TransactionObjectArgument],
|
9454
9436
|
): TransactionArgument & [TransactionArgument] {
|
9455
9437
|
const _args: any[] = [];
|
9456
9438
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9463,7 +9445,7 @@ export namespace validator_set {
|
|
9463
9445
|
}
|
9464
9446
|
export function getValidatorMutWithCtxIncludingCandidates(
|
9465
9447
|
tx: Transaction,
|
9466
|
-
args: [string | TransactionObjectArgument
|
9448
|
+
args: [string | TransactionObjectArgument],
|
9467
9449
|
): TransactionArgument & [TransactionArgument] {
|
9468
9450
|
const _args: any[] = [];
|
9469
9451
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9478,8 +9460,8 @@ export namespace validator_set {
|
|
9478
9460
|
export function getValidatorMutWithVerifiedCap(
|
9479
9461
|
tx: Transaction,
|
9480
9462
|
args: [
|
9481
|
-
string | TransactionObjectArgument
|
9482
|
-
string | TransactionObjectArgument
|
9463
|
+
string | TransactionObjectArgument,
|
9464
|
+
string | TransactionObjectArgument,
|
9483
9465
|
boolean | TransactionArgument,
|
9484
9466
|
],
|
9485
9467
|
): TransactionArgument &
|
@@ -9497,10 +9479,7 @@ export namespace validator_set {
|
|
9497
9479
|
}
|
9498
9480
|
export function isActiveValidatorByIotaAddress(
|
9499
9481
|
tx: Transaction,
|
9500
|
-
args: [
|
9501
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9502
|
-
string | TransactionArgument,
|
9503
|
-
],
|
9482
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9504
9483
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9505
9484
|
const _args: any[] = [];
|
9506
9485
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9514,10 +9493,7 @@ export namespace validator_set {
|
|
9514
9493
|
}
|
9515
9494
|
export function isCommitteeValidatorByIotaAddress(
|
9516
9495
|
tx: Transaction,
|
9517
|
-
args: [
|
9518
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9519
|
-
string | TransactionArgument,
|
9520
|
-
],
|
9496
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9521
9497
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9522
9498
|
const _args: any[] = [];
|
9523
9499
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9532,8 +9508,8 @@ export namespace validator_set {
|
|
9532
9508
|
export function isDuplicateValidator(
|
9533
9509
|
tx: Transaction,
|
9534
9510
|
args: [
|
9535
|
-
string | TransactionObjectArgument
|
9536
|
-
string | TransactionObjectArgument
|
9511
|
+
string | TransactionObjectArgument,
|
9512
|
+
string | TransactionObjectArgument,
|
9537
9513
|
],
|
9538
9514
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9539
9515
|
const _args: any[] = [];
|
@@ -9549,7 +9525,7 @@ export namespace validator_set {
|
|
9549
9525
|
export function isInactiveValidator(
|
9550
9526
|
tx: Transaction,
|
9551
9527
|
args: [
|
9552
|
-
string | TransactionObjectArgument
|
9528
|
+
string | TransactionObjectArgument,
|
9553
9529
|
_0x2.object$.ID | TransactionArgument,
|
9554
9530
|
],
|
9555
9531
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -9566,7 +9542,7 @@ export namespace validator_set {
|
|
9566
9542
|
export function isInactiveValidatorInner(
|
9567
9543
|
tx: Transaction,
|
9568
9544
|
args: [
|
9569
|
-
string | TransactionObjectArgument
|
9545
|
+
string | TransactionObjectArgument,
|
9570
9546
|
_0x2.object$.ID | TransactionArgument,
|
9571
9547
|
],
|
9572
9548
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -9582,10 +9558,7 @@ export namespace validator_set {
|
|
9582
9558
|
}
|
9583
9559
|
export function isValidatorCandidate(
|
9584
9560
|
tx: Transaction,
|
9585
|
-
args: [
|
9586
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9587
|
-
string | TransactionArgument,
|
9588
|
-
],
|
9561
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9589
9562
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9590
9563
|
const _args: any[] = [];
|
9591
9564
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9599,10 +9572,7 @@ export namespace validator_set {
|
|
9599
9572
|
}
|
9600
9573
|
export function isValidatorCandidateInner(
|
9601
9574
|
tx: Transaction,
|
9602
|
-
args: [
|
9603
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9604
|
-
string | TransactionArgument,
|
9605
|
-
],
|
9575
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9606
9576
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9607
9577
|
const _args: any[] = [];
|
9608
9578
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9629,7 +9599,7 @@ export namespace validator_set {
|
|
9629
9599
|
}
|
9630
9600
|
export function nextEpochValidatorCount(
|
9631
9601
|
tx: Transaction,
|
9632
|
-
args: [string | TransactionObjectArgument
|
9602
|
+
args: [string | TransactionObjectArgument],
|
9633
9603
|
): TransactionArgument & [TransactionArgument] {
|
9634
9604
|
const _args: any[] = [];
|
9635
9605
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9643,8 +9613,8 @@ export namespace validator_set {
|
|
9643
9613
|
export function poolExchangeRates(
|
9644
9614
|
tx: Transaction,
|
9645
9615
|
args: [
|
9646
|
-
string | TransactionObjectArgument
|
9647
|
-
string | TransactionObjectArgument
|
9616
|
+
string | TransactionObjectArgument,
|
9617
|
+
string | TransactionObjectArgument,
|
9648
9618
|
],
|
9649
9619
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9650
9620
|
const _args: any[] = [];
|
@@ -9660,7 +9630,7 @@ export namespace validator_set {
|
|
9660
9630
|
export function processNewCommittee(
|
9661
9631
|
tx: Transaction,
|
9662
9632
|
args: [
|
9663
|
-
string | TransactionObjectArgument
|
9633
|
+
string | TransactionObjectArgument,
|
9664
9634
|
bigint | TransactionArgument,
|
9665
9635
|
(string | TransactionObjectArgument)[] | TransactionArgument,
|
9666
9636
|
],
|
@@ -9680,7 +9650,7 @@ export namespace validator_set {
|
|
9680
9650
|
export function requestAddStake(
|
9681
9651
|
tx: Transaction,
|
9682
9652
|
args: [
|
9683
|
-
string | TransactionObjectArgument
|
9653
|
+
string | TransactionObjectArgument,
|
9684
9654
|
string | TransactionArgument,
|
9685
9655
|
_0x2.balance.Balance<_0x2.iota.IOTA> | TransactionArgument,
|
9686
9656
|
],
|
@@ -9699,10 +9669,7 @@ export namespace validator_set {
|
|
9699
9669
|
}
|
9700
9670
|
export function requestAddValidator(
|
9701
9671
|
tx: Transaction,
|
9702
|
-
args: [
|
9703
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9704
|
-
bigint | TransactionArgument,
|
9705
|
-
],
|
9672
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
9706
9673
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9707
9674
|
const _args: any[] = [];
|
9708
9675
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9717,7 +9684,7 @@ export namespace validator_set {
|
|
9717
9684
|
export function requestAddValidatorCandidate(
|
9718
9685
|
tx: Transaction,
|
9719
9686
|
args: [
|
9720
|
-
string | TransactionObjectArgument
|
9687
|
+
string | TransactionObjectArgument,
|
9721
9688
|
validator.ValidatorV1 | TransactionArgument,
|
9722
9689
|
],
|
9723
9690
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -9733,7 +9700,7 @@ export namespace validator_set {
|
|
9733
9700
|
}
|
9734
9701
|
export function requestRemoveValidator(
|
9735
9702
|
tx: Transaction,
|
9736
|
-
args: [string | TransactionObjectArgument
|
9703
|
+
args: [string | TransactionObjectArgument],
|
9737
9704
|
): TransactionArgument & [TransactionArgument] {
|
9738
9705
|
const _args: any[] = [];
|
9739
9706
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9746,7 +9713,7 @@ export namespace validator_set {
|
|
9746
9713
|
}
|
9747
9714
|
export function requestRemoveValidatorCandidate(
|
9748
9715
|
tx: Transaction,
|
9749
|
-
args: [string | TransactionObjectArgument
|
9716
|
+
args: [string | TransactionObjectArgument],
|
9750
9717
|
): TransactionArgument & [TransactionArgument] {
|
9751
9718
|
const _args: any[] = [];
|
9752
9719
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9759,10 +9726,7 @@ export namespace validator_set {
|
|
9759
9726
|
}
|
9760
9727
|
export function requestSetCommissionRate(
|
9761
9728
|
tx: Transaction,
|
9762
|
-
args: [
|
9763
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9764
|
-
bigint | TransactionArgument,
|
9765
|
-
],
|
9729
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
9766
9730
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9767
9731
|
const _args: any[] = [];
|
9768
9732
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9777,7 +9741,7 @@ export namespace validator_set {
|
|
9777
9741
|
export function requestWithdrawStake(
|
9778
9742
|
tx: Transaction,
|
9779
9743
|
args: [
|
9780
|
-
string | TransactionObjectArgument
|
9744
|
+
string | TransactionObjectArgument,
|
9781
9745
|
staking_pool.StakedIota | TransactionArgument,
|
9782
9746
|
],
|
9783
9747
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
@@ -9793,10 +9757,7 @@ export namespace validator_set {
|
|
9793
9757
|
}
|
9794
9758
|
export function selectCommitteeMembersTopNStakers(
|
9795
9759
|
tx: Transaction,
|
9796
|
-
args: [
|
9797
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9798
|
-
bigint | TransactionArgument,
|
9799
|
-
],
|
9760
|
+
args: [string | TransactionObjectArgument, bigint | TransactionArgument],
|
9800
9761
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9801
9762
|
const _args: any[] = [];
|
9802
9763
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9810,7 +9771,7 @@ export namespace validator_set {
|
|
9810
9771
|
}
|
9811
9772
|
export function stakingPoolMappings(
|
9812
9773
|
tx: Transaction,
|
9813
|
-
args: [string | TransactionObjectArgument
|
9774
|
+
args: [string | TransactionObjectArgument],
|
9814
9775
|
): TransactionArgument & [TransactionArgument] {
|
9815
9776
|
const _args: any[] = [];
|
9816
9777
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9823,7 +9784,7 @@ export namespace validator_set {
|
|
9823
9784
|
}
|
9824
9785
|
export function stakingPoolMappingsInner(
|
9825
9786
|
tx: Transaction,
|
9826
|
-
args: [string | TransactionObjectArgument
|
9787
|
+
args: [string | TransactionObjectArgument],
|
9827
9788
|
): TransactionArgument & [TransactionArgument] {
|
9828
9789
|
const _args: any[] = [];
|
9829
9790
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9837,8 +9798,8 @@ export namespace validator_set {
|
|
9837
9798
|
export function sumCommitteeVotingPowerByAddresses(
|
9838
9799
|
tx: Transaction,
|
9839
9800
|
args: [
|
9840
|
-
string | TransactionObjectArgument
|
9841
|
-
string | TransactionObjectArgument
|
9801
|
+
string | TransactionObjectArgument,
|
9802
|
+
string | TransactionObjectArgument,
|
9842
9803
|
],
|
9843
9804
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9844
9805
|
const _args: any[] = [];
|
@@ -9854,8 +9815,8 @@ export namespace validator_set {
|
|
9854
9815
|
export function sumVotingPowerByAddresses(
|
9855
9816
|
tx: Transaction,
|
9856
9817
|
args: [
|
9857
|
-
string | TransactionObjectArgument
|
9858
|
-
string | TransactionObjectArgument
|
9818
|
+
string | TransactionObjectArgument,
|
9819
|
+
string | TransactionObjectArgument,
|
9859
9820
|
],
|
9860
9821
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9861
9822
|
const _args: any[] = [];
|
@@ -9870,7 +9831,7 @@ export namespace validator_set {
|
|
9870
9831
|
}
|
9871
9832
|
export function totalStake(
|
9872
9833
|
tx: Transaction,
|
9873
|
-
args: [string | TransactionObjectArgument
|
9834
|
+
args: [string | TransactionObjectArgument],
|
9874
9835
|
): TransactionArgument & [TransactionArgument] {
|
9875
9836
|
const _args: any[] = [];
|
9876
9837
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9883,7 +9844,7 @@ export namespace validator_set {
|
|
9883
9844
|
}
|
9884
9845
|
export function totalStakeInner(
|
9885
9846
|
tx: Transaction,
|
9886
|
-
args: [string | TransactionObjectArgument
|
9847
|
+
args: [string | TransactionObjectArgument],
|
9887
9848
|
): TransactionArgument & [TransactionArgument] {
|
9888
9849
|
const _args: any[] = [];
|
9889
9850
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9910,8 +9871,8 @@ export namespace validator_set {
|
|
9910
9871
|
export function validatorAddressByPoolIdInner(
|
9911
9872
|
tx: Transaction,
|
9912
9873
|
args: [
|
9913
|
-
string | TransactionObjectArgument
|
9914
|
-
string | TransactionObjectArgument
|
9874
|
+
string | TransactionObjectArgument,
|
9875
|
+
string | TransactionObjectArgument,
|
9915
9876
|
],
|
9916
9877
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9917
9878
|
const _args: any[] = [];
|
@@ -9926,10 +9887,7 @@ export namespace validator_set {
|
|
9926
9887
|
}
|
9927
9888
|
export function validatorStakeAmount(
|
9928
9889
|
tx: Transaction,
|
9929
|
-
args: [
|
9930
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9931
|
-
string | TransactionArgument,
|
9932
|
-
],
|
9890
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9933
9891
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9934
9892
|
const _args: any[] = [];
|
9935
9893
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9943,10 +9901,7 @@ export namespace validator_set {
|
|
9943
9901
|
}
|
9944
9902
|
export function validatorStakeAmountInner(
|
9945
9903
|
tx: Transaction,
|
9946
|
-
args: [
|
9947
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9948
|
-
string | TransactionArgument,
|
9949
|
-
],
|
9904
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9950
9905
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9951
9906
|
const _args: any[] = [];
|
9952
9907
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9960,10 +9915,7 @@ export namespace validator_set {
|
|
9960
9915
|
}
|
9961
9916
|
export function validatorStakingPoolId(
|
9962
9917
|
tx: Transaction,
|
9963
|
-
args: [
|
9964
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9965
|
-
string | TransactionArgument,
|
9966
|
-
],
|
9918
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9967
9919
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9968
9920
|
const _args: any[] = [];
|
9969
9921
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9977,10 +9929,7 @@ export namespace validator_set {
|
|
9977
9929
|
}
|
9978
9930
|
export function validatorStakingPoolIdInner(
|
9979
9931
|
tx: Transaction,
|
9980
|
-
args: [
|
9981
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9982
|
-
string | TransactionArgument,
|
9983
|
-
],
|
9932
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
9984
9933
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
9985
9934
|
const _args: any[] = [];
|
9986
9935
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -9994,10 +9943,7 @@ export namespace validator_set {
|
|
9994
9943
|
}
|
9995
9944
|
export function validatorTotalStakeAmount(
|
9996
9945
|
tx: Transaction,
|
9997
|
-
args: [
|
9998
|
-
string | TransactionObjectArgument | TransactionArgument,
|
9999
|
-
string | TransactionArgument,
|
10000
|
-
],
|
9946
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
10001
9947
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
10002
9948
|
const _args: any[] = [];
|
10003
9949
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -10011,10 +9957,7 @@ export namespace validator_set {
|
|
10011
9957
|
}
|
10012
9958
|
export function validatorTotalStakeAmountInner(
|
10013
9959
|
tx: Transaction,
|
10014
|
-
args: [
|
10015
|
-
string | TransactionObjectArgument | TransactionArgument,
|
10016
|
-
string | TransactionArgument,
|
10017
|
-
],
|
9960
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
10018
9961
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
10019
9962
|
const _args: any[] = [];
|
10020
9963
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -10028,10 +9971,7 @@ export namespace validator_set {
|
|
10028
9971
|
}
|
10029
9972
|
export function validatorVotingPower(
|
10030
9973
|
tx: Transaction,
|
10031
|
-
args: [
|
10032
|
-
string | TransactionObjectArgument | TransactionArgument,
|
10033
|
-
string | TransactionArgument,
|
10034
|
-
],
|
9974
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
10035
9975
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
10036
9976
|
const _args: any[] = [];
|
10037
9977
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -10045,10 +9985,7 @@ export namespace validator_set {
|
|
10045
9985
|
}
|
10046
9986
|
export function validatorVotingPowerInner(
|
10047
9987
|
tx: Transaction,
|
10048
|
-
args: [
|
10049
|
-
string | TransactionObjectArgument | TransactionArgument,
|
10050
|
-
string | TransactionArgument,
|
10051
|
-
],
|
9988
|
+
args: [string | TransactionObjectArgument, string | TransactionArgument],
|
10052
9989
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
10053
9990
|
const _args: any[] = [];
|
10054
9991
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -10063,8 +10000,8 @@ export namespace validator_set {
|
|
10063
10000
|
export function verifyCap(
|
10064
10001
|
tx: Transaction,
|
10065
10002
|
args: [
|
10066
|
-
string | TransactionObjectArgument
|
10067
|
-
string | TransactionObjectArgument
|
10003
|
+
string | TransactionObjectArgument,
|
10004
|
+
string | TransactionObjectArgument,
|
10068
10005
|
number | TransactionArgument,
|
10069
10006
|
],
|
10070
10007
|
): TransactionArgument &
|
@@ -10924,7 +10861,7 @@ export namespace validator_wrapper {
|
|
10924
10861
|
}
|
10925
10862
|
export function loadValidatorMaybeUpgrade(
|
10926
10863
|
tx: Transaction,
|
10927
|
-
args: [string | TransactionObjectArgument
|
10864
|
+
args: [string | TransactionObjectArgument],
|
10928
10865
|
): TransactionArgument & [TransactionArgument] {
|
10929
10866
|
const _args: any[] = [];
|
10930
10867
|
_args.push(transactionArgumentOrObject(args[0], tx));
|
@@ -11020,8 +10957,8 @@ export namespace voting_power {
|
|
11020
10957
|
export function setVotingPower(
|
11021
10958
|
tx: Transaction,
|
11022
10959
|
args: [
|
11023
|
-
string | TransactionObjectArgument
|
11024
|
-
string | TransactionObjectArgument
|
10960
|
+
string | TransactionObjectArgument,
|
10961
|
+
string | TransactionObjectArgument,
|
11025
10962
|
],
|
11026
10963
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
11027
10964
|
const _args: any[] = [];
|
@@ -11037,8 +10974,8 @@ export namespace voting_power {
|
|
11037
10974
|
export function totalCommitteeStake(
|
11038
10975
|
tx: Transaction,
|
11039
10976
|
args: [
|
11040
|
-
string | TransactionObjectArgument
|
11041
|
-
string | TransactionObjectArgument
|
10977
|
+
string | TransactionObjectArgument,
|
10978
|
+
string | TransactionObjectArgument,
|
11042
10979
|
],
|
11043
10980
|
): TransactionArgument & [TransactionArgument, TransactionArgument] {
|
11044
10981
|
const _args: any[] = [];
|
@@ -11129,7 +11066,7 @@ export namespace voting_power {
|
|
11129
11066
|
}
|
11130
11067
|
|
11131
11068
|
const MODULES = JSON.parse(
|
11132
|
-
'{"genesis":{"fileFormatVersion":6,"address":"0x3","name":"genesis","friends":[],"structs":{"GenesisChainParameters":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"protocol_version","type":"U64"},{"name":"chain_start_timestamp_ms","type":"U64"},{"name":"epoch_duration_ms","type":"U64"},{"name":"max_validator_count","type":"U64"},{"name":"min_validator_joining_stake","type":"U64"},{"name":"validator_low_stake_threshold","type":"U64"},{"name":"validator_very_low_stake_threshold","type":"U64"},{"name":"validator_low_stake_grace_period","type":"U64"}]},"GenesisValidatorMetadata":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"name","type":{"Vector":"U8"}},{"name":"description","type":{"Vector":"U8"}},{"name":"image_url","type":{"Vector":"U8"}},{"name":"project_url","type":{"Vector":"U8"}},{"name":"iota_address","type":"Address"},{"name":"gas_price","type":"U64"},{"name":"commission_rate","type":"U64"},{"name":"authority_public_key","type":{"Vector":"U8"}},{"name":"proof_of_possession","type":{"Vector":"U8"}},{"name":"network_public_key","type":{"Vector":"U8"}},{"name":"protocol_public_key","type":{"Vector":"U8"}},{"name":"network_address","type":{"Vector":"U8"}},{"name":"p2p_address","type":{"Vector":"U8"}},{"name":"primary_address","type":{"Vector":"U8"}}]},"TokenAllocation":{"abilities":{"abilities":[]},"typeParameters":[],"fields":[{"name":"recipient_address","type":"Address"},{"name":"amount_nanos","type":"U64"},{"name":"staked_with_validator","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["Address"]}}},{"name":"staked_with_timelock_expiration","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}}}]},"TokenDistributionSchedule":{"abilities":{"abilities":[]},"typeParameters":[],"fields":[{"name":"pre_minted_supply","type":"U64"},{"name":"allocations","type":{"Vector":{"Struct":{"address":"0x3","module":"genesis","name":"TokenAllocation","typeArguments":[]}}}}]}},"exposedFunctions":{}},"iota_system":{"fileFormatVersion":6,"address":"0x3","name":"iota_system","friends":[{"address":"0x3","name":"genesis"},{"address":"0x3","name":"timelocked_staking"}],"structs":{"IotaSystemState":{"abilities":{"abilities":["Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"version","type":"U64"}]}},"exposedFunctions":{"active_validator_addresses":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"committee_validator_addresses":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"create":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}},{"Struct":{"address":"0x2","module":"iota","name":"IotaTreasuryCap","typeArguments":[]}},{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64","U64",{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}},{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"get_total_iota_supply":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}}],"return":["U64"]},"load_iota_system_admin_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}}}]},"pool_exchange_rates":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}}]},"report_validator":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"Address"],"return":[]},"request_add_stake":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_mul_coin":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_validator":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_validator_candidate":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},"U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator_candidate":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_set_commission_rate":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_set_gas_price":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"U64"],"return":[]},"request_withdraw_stake":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_withdraw_stake_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"rotate_operation_cap":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"set_candidate_validator_commission_rate":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"set_candidate_validator_gas_price":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"U64"],"return":[]},"undo_report_validator":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"Address"],"return":[]},"update_candidate_validator_authority_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_network_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_network_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_p2p_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_primary_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_protocol_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_description":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_image_url":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_name":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_authority_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_network_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_network_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_p2p_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_primary_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_protocol_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_project_url":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"validator_address_by_pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":["Address"]}}},"iota_system_state_inner":{"fileFormatVersion":6,"address":"0x3","name":"iota_system_state_inner","friends":[{"address":"0x3","name":"genesis"},{"address":"0x3","name":"iota_system"}],"structs":{"IotaSystemStateV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"protocol_version","type":"U64"},{"name":"system_state_version","type":"U64"},{"name":"iota_treasury_cap","type":{"Struct":{"address":"0x2","module":"iota","name":"IotaTreasuryCap","typeArguments":[]}}},{"name":"validators","type":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},{"name":"storage_fund","type":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}},{"name":"parameters","type":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}}},{"name":"iota_system_admin_cap","type":{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}}},{"name":"reference_gas_price","type":"U64"},{"name":"validator_report_records","type":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address",{"Struct":{"address":"0x2","module":"vec_set","name":"VecSet","typeArguments":["Address"]}}]}}},{"name":"safe_mode","type":"Bool"},{"name":"safe_mode_storage_charges","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"safe_mode_computation_rewards","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"safe_mode_storage_rebates","type":"U64"},{"name":"safe_mode_non_refundable_storage_fee","type":"U64"},{"name":"epoch_start_timestamp_ms","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]},"IotaSystemStateV2":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"protocol_version","type":"U64"},{"name":"system_state_version","type":"U64"},{"name":"iota_treasury_cap","type":{"Struct":{"address":"0x2","module":"iota","name":"IotaTreasuryCap","typeArguments":[]}}},{"name":"validators","type":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"name":"storage_fund","type":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}},{"name":"parameters","type":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}}},{"name":"iota_system_admin_cap","type":{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}}},{"name":"reference_gas_price","type":"U64"},{"name":"validator_report_records","type":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address",{"Struct":{"address":"0x2","module":"vec_set","name":"VecSet","typeArguments":["Address"]}}]}}},{"name":"safe_mode","type":"Bool"},{"name":"safe_mode_storage_charges","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"safe_mode_computation_charges","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"safe_mode_computation_charges_burned","type":"U64"},{"name":"safe_mode_storage_rebates","type":"U64"},{"name":"safe_mode_non_refundable_storage_fee","type":"U64"},{"name":"epoch_start_timestamp_ms","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]},"SystemEpochInfoEventV1":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"protocol_version","type":"U64"},{"name":"reference_gas_price","type":"U64"},{"name":"total_stake","type":"U64"},{"name":"storage_charge","type":"U64"},{"name":"storage_rebate","type":"U64"},{"name":"storage_fund_balance","type":"U64"},{"name":"total_gas_fees","type":"U64"},{"name":"total_stake_rewards_distributed","type":"U64"},{"name":"burnt_tokens_amount","type":"U64"},{"name":"minted_tokens_amount","type":"U64"}]},"SystemEpochInfoEventV2":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"protocol_version","type":"U64"},{"name":"total_stake","type":"U64"},{"name":"storage_charge","type":"U64"},{"name":"storage_rebate","type":"U64"},{"name":"storage_fund_balance","type":"U64"},{"name":"total_gas_fees","type":"U64"},{"name":"total_stake_rewards_distributed","type":"U64"},{"name":"burnt_tokens_amount","type":"U64"},{"name":"minted_tokens_amount","type":"U64"},{"name":"tips_amount","type":"U64"}]},"SystemParametersV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"epoch_duration_ms","type":"U64"},{"name":"min_validator_count","type":"U64"},{"name":"max_validator_count","type":"U64"},{"name":"min_validator_joining_stake","type":"U64"},{"name":"validator_low_stake_threshold","type":"U64"},{"name":"validator_very_low_stake_threshold","type":"U64"},{"name":"validator_low_stake_grace_period","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]}},"exposedFunctions":{"active_validator_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"advance_epoch":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"U64","U64","U64",{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64","U64","U64","U64","U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"committee_validator_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"committee_validator_voting_powers":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address","U64"]}}]},"create":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x2","module":"iota","name":"IotaTreasuryCap","typeArguments":[]}},{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64","U64",{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}},{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV1","typeArguments":[]}}]},"create_system_parameters":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":["U64","U64","U64","U64","U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}}]},"epoch":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"epoch_start_timestamp_ms":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"genesis_system_state_version":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[],"return":["U64"]},"get_reporters_of":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"Address"],"return":[{"Struct":{"address":"0x2","module":"vec_set","name":"VecSet","typeArguments":["Address"]}}]},"get_storage_fund_object_rebates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"get_storage_fund_total_balance":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"get_total_iota_supply":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"iota_system_admin_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}}}]},"pool_exchange_rates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}}]},"protocol_version":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"report_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"Address"],"return":[]},"request_add_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_stake_mul_coin":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_validator_candidate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},"U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator_candidate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_set_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"U64",{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_withdraw_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"rotate_operation_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"set_candidate_validator_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"U64",{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"system_state_version":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"undo_report_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"Address"],"return":[]},"update_candidate_validator_authority_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_network_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_network_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_p2p_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_primary_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_protocol_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_description":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_image_url":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_name":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_authority_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_network_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_network_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_p2p_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_primary_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_protocol_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_project_url":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"v1_to_v2":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV1","typeArguments":[]}}],"return":[{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}]},"validator_address_by_pool_id":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":["Address"]},"validator_stake_amount":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_staking_pool_id":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"Address"],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"validator_staking_pool_mappings":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}}]}}},"staking_pool":{"fileFormatVersion":6,"address":"0x3","name":"staking_pool","friends":[{"address":"0x3","name":"validator"},{"address":"0x3","name":"validator_set"}],"structs":{"PoolTokenExchangeRate":{"abilities":{"abilities":["Copy","Drop","Store"]},"typeParameters":[],"fields":[{"name":"iota_amount","type":"U64"},{"name":"pool_token_amount","type":"U64"}]},"StakedIota":{"abilities":{"abilities":["Store","Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"stake_activation_epoch","type":"U64"},{"name":"principal","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}}]},"StakingPoolV1":{"abilities":{"abilities":["Store","Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"activation_epoch","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}}},{"name":"deactivation_epoch","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}}},{"name":"iota_balance","type":"U64"},{"name":"rewards_pool","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"pool_token_balance","type":"U64"},{"name":"exchange_rates","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}},{"name":"pending_stake","type":"U64"},{"name":"pending_total_iota_withdraw","type":"U64"},{"name":"pending_pool_token_withdraw","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]}},"exposedFunctions":{"activate_staking_pool":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},"U64"],"return":[]},"deactivate_staking_pool":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},"U64"],"return":[]},"deposit_rewards":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}],"return":[]},"exchange_rates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}}]},"iota_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}}],"return":["U64"]},"iota_balance":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["U64"]},"is_equal_staking_metadata":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}}],"return":["Bool"]},"is_inactive":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["Bool"]},"is_preactive":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["Bool"]},"join_staked_iota":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}],"return":[]},"new":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}]},"pending_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["U64"]},"pending_stake_withdraw_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["U64"]},"pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"pool_token_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}}],"return":["U64"]},"pool_token_exchange_rate_at_epoch":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},"U64"],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]},"process_pending_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":[]},"process_pending_stake_withdraw":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":[]},"process_pending_stakes_and_withdraws":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_withdraw_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"split":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"split_staked_iota":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"stake_activation_epoch":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}}],"return":["U64"]},"staked_iota_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}}],"return":["U64"]},"withdraw_from_principal":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}],"return":["U64",{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}}},"storage_fund":{"fileFormatVersion":6,"address":"0x3","name":"storage_fund","friends":[{"address":"0x3","name":"iota_system_state_inner"}],"structs":{"StorageFundV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"total_object_storage_rebates","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"non_refundable_balance","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}}]}},"exposedFunctions":{"advance_epoch":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64","U64"],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"new":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}],"return":[{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}]},"total_balance":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}}],"return":["U64"]},"total_object_storage_rebates":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}}],"return":["U64"]}}},"timelocked_staking":{"fileFormatVersion":6,"address":"0x3","name":"timelocked_staking","friends":[{"address":"0x3","name":"genesis"}],"structs":{"TimelockedStakedIota":{"abilities":{"abilities":["Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"staked_iota","type":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},{"name":"expiration_timestamp_ms","type":"U64"},{"name":"label","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}}]}},"exposedFunctions":{"expiration_timestamp_ms":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["U64"]},"is_equal_staking_metadata":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["Bool"]},"is_labeled_with":{"visibility":"Public","isEntry":false,"typeParameters":[{"abilities":[]}],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["Bool"]},"join_staked_iota":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}],"return":[]},"label":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}]},"pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"request_add_stake":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_at_genesis":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address","U64",{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_mul_bal":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_mul_bal_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Vector":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}]},"request_add_stake_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}]},"request_withdraw_stake":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_withdraw_stake_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"split":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}]},"split_staked_iota":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"stake_activation_epoch":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["U64"]},"staked_iota_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["U64"]},"transfer_to_sender":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"transfer_to_sender_multiple":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Vector":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]}}},"validator":{"fileFormatVersion":6,"address":"0x3","name":"validator","friends":[{"address":"0x3","name":"genesis"},{"address":"0x3","name":"iota_system_state_inner"},{"address":"0x3","name":"timelocked_staking"},{"address":"0x3","name":"validator_set"},{"address":"0x3","name":"voting_power"}],"structs":{"StakingRequestEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"validator_address","type":"Address"},{"name":"staker_address","type":"Address"},{"name":"epoch","type":"U64"},{"name":"amount","type":"U64"}]},"UnstakingRequestEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"validator_address","type":"Address"},{"name":"staker_address","type":"Address"},{"name":"stake_activation_epoch","type":"U64"},{"name":"unstaking_epoch","type":"U64"},{"name":"principal_amount","type":"U64"},{"name":"reward_amount","type":"U64"}]},"ValidatorMetadataV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"iota_address","type":"Address"},{"name":"authority_pubkey_bytes","type":{"Vector":"U8"}},{"name":"network_pubkey_bytes","type":{"Vector":"U8"}},{"name":"protocol_pubkey_bytes","type":{"Vector":"U8"}},{"name":"proof_of_possession","type":{"Vector":"U8"}},{"name":"name","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"description","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"image_url","type":{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}}},{"name":"project_url","type":{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}}},{"name":"net_address","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"p2p_address","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"primary_address","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"next_epoch_authority_pubkey_bytes","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}},{"name":"next_epoch_proof_of_possession","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}},{"name":"next_epoch_network_pubkey_bytes","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}},{"name":"next_epoch_protocol_pubkey_bytes","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}},{"name":"next_epoch_net_address","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}},{"name":"next_epoch_p2p_address","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}},{"name":"next_epoch_primary_address","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]},"ValidatorV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"metadata","type":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorMetadataV1","typeArguments":[]}}},{"name":"voting_power","type":"U64"},{"name":"operation_cap_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"gas_price","type":"U64"},{"name":"staking_pool","type":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"name":"commission_rate","type":"U64"},{"name":"next_epoch_stake","type":"U64"},{"name":"next_epoch_gas_price","type":"U64"},{"name":"next_epoch_commission_rate","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]}},"exposedFunctions":{"activate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"adjust_next_epoch_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[]},"authority_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":"U8"}}]},"commission_rate":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"deactivate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"deposit_stake_rewards":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}],"return":[]},"description":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"effectuate_staged_metadata":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[]},"gas_price":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"get_staking_pool_ref":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}]},"image_url":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}}}]},"iota_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Address"]},"is_duplicate":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Bool"]},"is_preactive":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Bool"]},"metadata":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorMetadataV1","typeArguments":[]}}}]},"name":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"network_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"network_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":"U8"}}]},"new":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":["Address",{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},"U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}]},"new_metadata":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":["Address",{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}},{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}],"return":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorMetadataV1","typeArguments":[]}}]},"new_unverified_validator_operation_cap_and_transfer":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"next_epoch_authority_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}}]},"next_epoch_gas_price":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"next_epoch_network_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}}]},"next_epoch_network_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}}]},"next_epoch_p2p_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}}]},"next_epoch_primary_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}}]},"next_epoch_proof_of_possession":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}}]},"next_epoch_protocol_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}}]},"next_epoch_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"operation_cap_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}]},"p2p_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"pending_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"pending_stake_withdraw_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"pool_token_exchange_rate_at_epoch":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]},"primary_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"process_pending_stakes_and_withdraws":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"project_url":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}}}]},"proof_of_possession":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":"U8"}}]},"protocol_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":"U8"}}]},"request_add_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_stake_at_genesis":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_at_genesis_with_receipt":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_set_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"request_withdraw_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"set_candidate_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"set_voting_power":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"smaller_than":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Bool"]},"stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"staking_pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"total_stake":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"total_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"update_candidate_authority_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"}],"return":[]},"update_candidate_network_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_candidate_network_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_candidate_p2p_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_candidate_primary_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_candidate_protocol_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_description":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_image_url":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_name":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_authority_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"}],"return":[]},"update_next_epoch_network_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_network_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_p2p_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_primary_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_protocol_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_project_url":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"validate_metadata":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorMetadataV1","typeArguments":[]}}}],"return":[]},"validate_metadata_bcs":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Vector":"U8"}],"return":[]},"voting_power":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]}}},"validator_cap":{"fileFormatVersion":6,"address":"0x3","name":"validator_cap","friends":[{"address":"0x3","name":"iota_system_state_inner"},{"address":"0x3","name":"validator"},{"address":"0x3","name":"validator_set"}],"structs":{"UnverifiedValidatorOperationCap":{"abilities":{"abilities":["Store","Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"authorizer_validator_address","type":"Address"}]},"ValidatorOperationCap":{"abilities":{"abilities":["Drop"]},"typeParameters":[],"fields":[{"name":"authorizer_validator_address","type":"Address"}]}},"exposedFunctions":{"new_from_unverified":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"validator_cap","name":"ValidatorOperationCap","typeArguments":[]}}]},"new_unverified_validator_operation_cap_and_transfer":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":["Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"unverified_operation_cap_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}}],"return":[{"Reference":"Address"}]},"verified_operation_cap_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"ValidatorOperationCap","typeArguments":[]}}}],"return":[{"Reference":"Address"}]}}},"validator_set":{"fileFormatVersion":6,"address":"0x3","name":"validator_set","friends":[{"address":"0x3","name":"genesis"},{"address":"0x3","name":"iota_system_state_inner"}],"structs":{"CommitteeValidatorJoinEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"staking_pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}]},"CommitteeValidatorLeaveEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"staking_pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}]},"ValidatorEpochInfoEventV1":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"reference_gas_survey_quote","type":"U64"},{"name":"stake","type":"U64"},{"name":"voting_power","type":"U64"},{"name":"commission_rate","type":"U64"},{"name":"pool_staking_reward","type":"U64"},{"name":"pool_token_exchange_rate","type":{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}},{"name":"tallying_rule_reporters","type":{"Vector":"Address"}},{"name":"tallying_rule_global_score","type":"U64"}]},"ValidatorJoinEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"staking_pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}]},"ValidatorLeaveEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"staking_pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"is_voluntary","type":"Bool"}]},"ValidatorSetV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"total_stake","type":"U64"},{"name":"active_validators","type":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"name":"pending_active_validators","type":{"Struct":{"address":"0x2","module":"table_vec","name":"TableVec","typeArguments":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}]}}},{"name":"pending_removals","type":{"Vector":"U64"}},{"name":"staking_pool_mappings","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}},{"name":"inactive_validators","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]}}},{"name":"validator_candidates","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["Address",{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]}}},{"name":"at_risk_validators","type":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address","U64"]}}},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]},"ValidatorSetV2":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"total_stake","type":"U64"},{"name":"active_validators","type":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"name":"committee_members","type":{"Vector":"U64"}},{"name":"pending_active_validators","type":{"Struct":{"address":"0x2","module":"table_vec","name":"TableVec","typeArguments":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}]}}},{"name":"pending_removals","type":{"Vector":"U64"}},{"name":"staking_pool_mappings","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}},{"name":"inactive_validators","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]}}},{"name":"validator_candidates","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["Address",{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]}}},{"name":"at_risk_validators","type":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address","U64"]}}},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]}},"exposedFunctions":{"active_validator_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"active_validators":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}}]},"active_validators_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}}]},"advance_epoch":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address",{"Struct":{"address":"0x2","module":"vec_set","name":"VecSet","typeArguments":["Address"]}}]}}},"U64","U64","U64","U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"assert_no_pending_or_active_duplicates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[]},"committee_validator_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"derive_reference_gas_price":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}}],"return":["U64"]},"get_active_or_pending_or_candidate_validator_ref":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address","U8"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_active_validator_ref":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_active_validator_ref_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_committee_validator_ref_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_pending_validator_ref":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_pending_validator_ref_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_validator_mut":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},"Address"],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_validator_mut_with_ctx":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_validator_mut_with_ctx_including_candidates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_validator_mut_with_verified_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"ValidatorOperationCap","typeArguments":[]}}},"Bool"],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"is_active_validator_by_iota_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["Bool"]},"is_committee_validator_by_iota_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["Bool"]},"is_duplicate_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Bool"]},"is_inactive_validator":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}],"return":["Bool"]},"is_inactive_validator_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}],"return":["Bool"]},"is_validator_candidate":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":["Bool"]},"is_validator_candidate_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["Bool"]},"new_v1":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}]},"next_epoch_validator_count":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":["U64"]},"pool_exchange_rates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}}]},"process_new_committee":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"U64",{"Vector":"Address"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address",{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"U64",{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_validator_candidate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator_candidate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_set_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"U64",{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_withdraw_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"select_committee_members_top_n_stakers":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"U64"],"return":[{"Vector":"U64"}]},"staking_pool_mappings":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}}]},"staking_pool_mappings_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}}]},"sum_committee_voting_power_by_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Vector":"Address"}}],"return":["U64"]},"sum_voting_power_by_addresses":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"Reference":{"Vector":"Address"}}],"return":["U64"]},"total_stake":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}}],"return":["U64"]},"total_stake_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":["U64"]},"v1_to_v2":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}],"return":[{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}]},"validator_address_by_pool_id_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":["Address"]},"validator_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_stake_amount_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_staking_pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"validator_staking_pool_id_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"validator_total_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_total_stake_amount_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_voting_power":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_voting_power_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["U64"]},"verify_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"U8"],"return":[{"Struct":{"address":"0x3","module":"validator_cap","name":"ValidatorOperationCap","typeArguments":[]}}]}}},"validator_wrapper":{"fileFormatVersion":6,"address":"0x3","name":"validator_wrapper","friends":[{"address":"0x3","name":"validator_set"}],"structs":{"Validator":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"inner","type":{"Struct":{"address":"0x2","module":"versioned","name":"Versioned","typeArguments":[]}}}]}},"exposedFunctions":{"create_v1":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]},"destroy":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}],"return":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}]},"load_validator_maybe_upgrade":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}}],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]}}},"voting_power":{"fileFormatVersion":6,"address":"0x3","name":"voting_power","friends":[{"address":"0x3","name":"validator_set"}],"structs":{"VotingPowerInfoV1":{"abilities":{"abilities":["Drop"]},"typeParameters":[],"fields":[{"name":"validator_index","type":"U64"},{"name":"voting_power","type":"U64"},{"name":"stake","type":"U64"}]}},"exposedFunctions":{"quorum_threshold":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[],"return":["U64"]},"set_voting_power":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Vector":"U64"}},{"MutableReference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}}],"return":[]},"total_committee_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"Reference":{"Vector":"U64"}}],"return":["U64"]},"total_voting_power":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[],"return":["U64"]}}}}',
|
11069
|
+
'{"genesis":{"fileFormatVersion":6,"address":"0x3","name":"genesis","friends":[],"structs":{"GenesisChainParameters":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"protocol_version","type":"U64"},{"name":"chain_start_timestamp_ms","type":"U64"},{"name":"epoch_duration_ms","type":"U64"},{"name":"max_validator_count","type":"U64"},{"name":"min_validator_joining_stake","type":"U64"},{"name":"validator_low_stake_threshold","type":"U64"},{"name":"validator_very_low_stake_threshold","type":"U64"},{"name":"validator_low_stake_grace_period","type":"U64"}]},"GenesisValidatorMetadata":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"name","type":{"Vector":"U8"}},{"name":"description","type":{"Vector":"U8"}},{"name":"image_url","type":{"Vector":"U8"}},{"name":"project_url","type":{"Vector":"U8"}},{"name":"iota_address","type":"Address"},{"name":"gas_price","type":"U64"},{"name":"commission_rate","type":"U64"},{"name":"authority_public_key","type":{"Vector":"U8"}},{"name":"proof_of_possession","type":{"Vector":"U8"}},{"name":"network_public_key","type":{"Vector":"U8"}},{"name":"protocol_public_key","type":{"Vector":"U8"}},{"name":"network_address","type":{"Vector":"U8"}},{"name":"p2p_address","type":{"Vector":"U8"}},{"name":"primary_address","type":{"Vector":"U8"}}]},"TokenAllocation":{"abilities":{"abilities":[]},"typeParameters":[],"fields":[{"name":"recipient_address","type":"Address"},{"name":"amount_nanos","type":"U64"},{"name":"staked_with_validator","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["Address"]}}},{"name":"staked_with_timelock_expiration","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}}}]},"TokenDistributionSchedule":{"abilities":{"abilities":[]},"typeParameters":[],"fields":[{"name":"pre_minted_supply","type":"U64"},{"name":"allocations","type":{"Vector":{"Struct":{"address":"0x3","module":"genesis","name":"TokenAllocation","typeArguments":[]}}}}]}},"exposedFunctions":{}},"iota_system":{"fileFormatVersion":6,"address":"0x3","name":"iota_system","friends":[{"address":"0x3","name":"genesis"},{"address":"0x3","name":"timelocked_staking"}],"structs":{"IotaSystemState":{"abilities":{"abilities":["Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"version","type":"U64"}]}},"exposedFunctions":{"active_validator_addresses":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"committee_validator_addresses":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"create":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}},{"Struct":{"address":"0x2","module":"iota","name":"IotaTreasuryCap","typeArguments":[]}},{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64","U64",{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}},{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"get_total_iota_supply":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}}],"return":["U64"]},"load_iota_system_admin_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}}}]},"pool_exchange_rates":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}}]},"report_validator":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"Address"],"return":[]},"request_add_stake":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_mul_coin":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_validator":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_validator_candidate":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},"U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator_candidate":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_set_commission_rate":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_set_gas_price":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"U64"],"return":[]},"request_withdraw_stake":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_withdraw_stake_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"rotate_operation_cap":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"set_candidate_validator_commission_rate":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"set_candidate_validator_gas_price":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"U64"],"return":[]},"undo_report_validator":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"Address"],"return":[]},"update_candidate_validator_authority_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_network_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_network_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_p2p_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_primary_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_protocol_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_description":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_image_url":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_name":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_authority_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_network_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_network_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_p2p_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_primary_address":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_protocol_pubkey":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_project_url":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"validator_address_by_pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":["Address"]}}},"iota_system_state_inner":{"fileFormatVersion":6,"address":"0x3","name":"iota_system_state_inner","friends":[{"address":"0x3","name":"genesis"},{"address":"0x3","name":"iota_system"}],"structs":{"IotaSystemStateV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"protocol_version","type":"U64"},{"name":"system_state_version","type":"U64"},{"name":"iota_treasury_cap","type":{"Struct":{"address":"0x2","module":"iota","name":"IotaTreasuryCap","typeArguments":[]}}},{"name":"validators","type":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},{"name":"storage_fund","type":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}},{"name":"parameters","type":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}}},{"name":"iota_system_admin_cap","type":{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}}},{"name":"reference_gas_price","type":"U64"},{"name":"validator_report_records","type":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address",{"Struct":{"address":"0x2","module":"vec_set","name":"VecSet","typeArguments":["Address"]}}]}}},{"name":"safe_mode","type":"Bool"},{"name":"safe_mode_storage_charges","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"safe_mode_computation_rewards","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"safe_mode_storage_rebates","type":"U64"},{"name":"safe_mode_non_refundable_storage_fee","type":"U64"},{"name":"epoch_start_timestamp_ms","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]},"IotaSystemStateV2":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"protocol_version","type":"U64"},{"name":"system_state_version","type":"U64"},{"name":"iota_treasury_cap","type":{"Struct":{"address":"0x2","module":"iota","name":"IotaTreasuryCap","typeArguments":[]}}},{"name":"validators","type":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"name":"storage_fund","type":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}},{"name":"parameters","type":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}}},{"name":"iota_system_admin_cap","type":{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}}},{"name":"reference_gas_price","type":"U64"},{"name":"validator_report_records","type":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address",{"Struct":{"address":"0x2","module":"vec_set","name":"VecSet","typeArguments":["Address"]}}]}}},{"name":"safe_mode","type":"Bool"},{"name":"safe_mode_storage_charges","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"safe_mode_computation_charges","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"safe_mode_computation_charges_burned","type":"U64"},{"name":"safe_mode_storage_rebates","type":"U64"},{"name":"safe_mode_non_refundable_storage_fee","type":"U64"},{"name":"epoch_start_timestamp_ms","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]},"SystemEpochInfoEventV1":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"protocol_version","type":"U64"},{"name":"reference_gas_price","type":"U64"},{"name":"total_stake","type":"U64"},{"name":"storage_charge","type":"U64"},{"name":"storage_rebate","type":"U64"},{"name":"storage_fund_balance","type":"U64"},{"name":"total_gas_fees","type":"U64"},{"name":"total_stake_rewards_distributed","type":"U64"},{"name":"burnt_tokens_amount","type":"U64"},{"name":"minted_tokens_amount","type":"U64"}]},"SystemEpochInfoEventV2":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"protocol_version","type":"U64"},{"name":"total_stake","type":"U64"},{"name":"storage_charge","type":"U64"},{"name":"storage_rebate","type":"U64"},{"name":"storage_fund_balance","type":"U64"},{"name":"total_gas_fees","type":"U64"},{"name":"total_stake_rewards_distributed","type":"U64"},{"name":"burnt_tokens_amount","type":"U64"},{"name":"minted_tokens_amount","type":"U64"},{"name":"tips_amount","type":"U64"}]},"SystemParametersV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"epoch_duration_ms","type":"U64"},{"name":"min_validator_count","type":"U64"},{"name":"max_validator_count","type":"U64"},{"name":"min_validator_joining_stake","type":"U64"},{"name":"validator_low_stake_threshold","type":"U64"},{"name":"validator_very_low_stake_threshold","type":"U64"},{"name":"validator_low_stake_grace_period","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]}},"exposedFunctions":{"active_validator_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"advance_epoch":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"U64","U64","U64",{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64","U64","U64","U64","U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"committee_validator_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"committee_validator_voting_powers":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address","U64"]}}]},"create":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x2","module":"iota","name":"IotaTreasuryCap","typeArguments":[]}},{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64","U64",{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}},{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV1","typeArguments":[]}}]},"create_system_parameters":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":["U64","U64","U64","U64","U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"SystemParametersV1","typeArguments":[]}}]},"epoch":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"epoch_start_timestamp_ms":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"genesis_system_state_version":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[],"return":["U64"]},"get_reporters_of":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"Address"],"return":[{"Struct":{"address":"0x2","module":"vec_set","name":"VecSet","typeArguments":["Address"]}}]},"get_storage_fund_object_rebates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"get_storage_fund_total_balance":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"get_total_iota_supply":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"iota_system_admin_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"system_admin_cap","name":"IotaSystemAdminCap","typeArguments":[]}}}]},"pool_exchange_rates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}}]},"protocol_version":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"report_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"Address"],"return":[]},"request_add_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_stake_mul_coin":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":{"Struct":{"address":"0x2","module":"coin","name":"Coin","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_validator_candidate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},"U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator_candidate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_set_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"U64",{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_withdraw_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"rotate_operation_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"set_candidate_validator_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"U64",{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"system_state_version":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":["U64"]},"undo_report_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"Address"],"return":[]},"update_candidate_validator_authority_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_network_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_network_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_p2p_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_primary_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_candidate_validator_protocol_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_description":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_image_url":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_name":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_authority_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_network_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_network_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_p2p_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_primary_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_next_epoch_protocol_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"update_validator_project_url":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Vector":"U8"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"v1_to_v2":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV1","typeArguments":[]}}],"return":[{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}]},"validator_address_by_pool_id":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":["Address"]},"validator_stake_amount":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_staking_pool_id":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}},"Address"],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"validator_staking_pool_mappings":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"iota_system_state_inner","name":"IotaSystemStateV2","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}}]}}},"staking_pool":{"fileFormatVersion":6,"address":"0x3","name":"staking_pool","friends":[{"address":"0x3","name":"validator"},{"address":"0x3","name":"validator_set"}],"structs":{"PoolTokenExchangeRate":{"abilities":{"abilities":["Copy","Drop","Store"]},"typeParameters":[],"fields":[{"name":"iota_amount","type":"U64"},{"name":"pool_token_amount","type":"U64"}]},"StakedIota":{"abilities":{"abilities":["Store","Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"stake_activation_epoch","type":"U64"},{"name":"principal","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}}]},"StakingPoolV1":{"abilities":{"abilities":["Store","Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"activation_epoch","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}}},{"name":"deactivation_epoch","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":["U64"]}}},{"name":"iota_balance","type":"U64"},{"name":"rewards_pool","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"pool_token_balance","type":"U64"},{"name":"exchange_rates","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}},{"name":"pending_stake","type":"U64"},{"name":"pending_total_iota_withdraw","type":"U64"},{"name":"pending_pool_token_withdraw","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]}},"exposedFunctions":{"activate_staking_pool":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},"U64"],"return":[]},"deactivate_staking_pool":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},"U64"],"return":[]},"deposit_rewards":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}],"return":[]},"exchange_rates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}}]},"iota_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}}],"return":["U64"]},"iota_balance":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["U64"]},"is_equal_staking_metadata":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}}],"return":["Bool"]},"is_inactive":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["Bool"]},"is_preactive":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["Bool"]},"join_staked_iota":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}],"return":[]},"new":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}]},"pending_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["U64"]},"pending_stake_withdraw_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":["U64"]},"pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"pool_token_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}}],"return":["U64"]},"pool_token_exchange_rate_at_epoch":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},"U64"],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]},"process_pending_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":[]},"process_pending_stake_withdraw":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}],"return":[]},"process_pending_stakes_and_withdraws":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_withdraw_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"split":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"split_staked_iota":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"stake_activation_epoch":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}}],"return":["U64"]},"staked_iota_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}}],"return":["U64"]},"withdraw_from_principal":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}],"return":["U64",{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}}},"storage_fund":{"fileFormatVersion":6,"address":"0x3","name":"storage_fund","friends":[{"address":"0x3","name":"iota_system_state_inner"}],"structs":{"StorageFundV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"total_object_storage_rebates","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"name":"non_refundable_balance","type":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}}]}},"exposedFunctions":{"advance_epoch":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"U64","U64"],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"new":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}],"return":[{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}]},"total_balance":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}}],"return":["U64"]},"total_object_storage_rebates":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"storage_fund","name":"StorageFundV1","typeArguments":[]}}}],"return":["U64"]}}},"timelocked_staking":{"fileFormatVersion":6,"address":"0x3","name":"timelocked_staking","friends":[{"address":"0x3","name":"genesis"}],"structs":{"TimelockedStakedIota":{"abilities":{"abilities":["Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"staked_iota","type":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}},{"name":"expiration_timestamp_ms","type":"U64"},{"name":"label","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}}]}},"exposedFunctions":{"expiration_timestamp_ms":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["U64"]},"is_equal_staking_metadata":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["Bool"]},"is_labeled_with":{"visibility":"Public","isEntry":false,"typeParameters":[{"abilities":[]}],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["Bool"]},"join_staked_iota":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}],"return":[]},"label":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}]},"pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"request_add_stake":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_at_genesis":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address","U64",{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_mul_bal":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_mul_bal_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Vector":{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Vector":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}]},"request_add_stake_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}]},"request_withdraw_stake":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_withdraw_stake_non_entry":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"iota_system","name":"IotaSystemState","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"timelock","name":"TimeLock","typeArguments":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"split":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}]},"split_staked_iota":{"visibility":"Public","isEntry":true,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},"U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"stake_activation_epoch":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["U64"]},"staked_iota_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}}],"return":["U64"]},"transfer_to_sender":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"transfer_to_sender_multiple":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Vector":{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"unlock":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"unlock_with_clock":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"timelocked_staking","name":"TimelockedStakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"clock","name":"Clock","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]}}},"validator":{"fileFormatVersion":6,"address":"0x3","name":"validator","friends":[{"address":"0x3","name":"genesis"},{"address":"0x3","name":"iota_system_state_inner"},{"address":"0x3","name":"timelocked_staking"},{"address":"0x3","name":"validator_set"},{"address":"0x3","name":"voting_power"}],"structs":{"StakingRequestEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"validator_address","type":"Address"},{"name":"staker_address","type":"Address"},{"name":"epoch","type":"U64"},{"name":"amount","type":"U64"}]},"UnstakingRequestEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"validator_address","type":"Address"},{"name":"staker_address","type":"Address"},{"name":"stake_activation_epoch","type":"U64"},{"name":"unstaking_epoch","type":"U64"},{"name":"principal_amount","type":"U64"},{"name":"reward_amount","type":"U64"}]},"ValidatorMetadataV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"iota_address","type":"Address"},{"name":"authority_pubkey_bytes","type":{"Vector":"U8"}},{"name":"network_pubkey_bytes","type":{"Vector":"U8"}},{"name":"protocol_pubkey_bytes","type":{"Vector":"U8"}},{"name":"proof_of_possession","type":{"Vector":"U8"}},{"name":"name","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"description","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"image_url","type":{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}}},{"name":"project_url","type":{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}}},{"name":"net_address","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"p2p_address","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"primary_address","type":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}},{"name":"next_epoch_authority_pubkey_bytes","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}},{"name":"next_epoch_proof_of_possession","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}},{"name":"next_epoch_network_pubkey_bytes","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}},{"name":"next_epoch_protocol_pubkey_bytes","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}},{"name":"next_epoch_net_address","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}},{"name":"next_epoch_p2p_address","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}},{"name":"next_epoch_primary_address","type":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]},"ValidatorV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"metadata","type":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorMetadataV1","typeArguments":[]}}},{"name":"voting_power","type":"U64"},{"name":"operation_cap_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"gas_price","type":"U64"},{"name":"staking_pool","type":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}},{"name":"commission_rate","type":"U64"},{"name":"next_epoch_stake","type":"U64"},{"name":"next_epoch_gas_price","type":"U64"},{"name":"next_epoch_commission_rate","type":"U64"},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]}},"exposedFunctions":{"activate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"adjust_next_epoch_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[]},"authority_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":"U8"}}]},"commission_rate":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"deactivate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"deposit_stake_rewards":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}],"return":[]},"description":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"effectuate_staged_metadata":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[]},"gas_price":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"get_staking_pool_ref":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x3","module":"staking_pool","name":"StakingPoolV1","typeArguments":[]}}}]},"image_url":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}}}]},"iota_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Address"]},"is_duplicate":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Bool"]},"is_preactive":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Bool"]},"metadata":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorMetadataV1","typeArguments":[]}}}]},"name":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"network_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"network_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":"U8"}}]},"new":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":["Address",{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},"U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}]},"new_metadata":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":["Address",{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Vector":"U8"},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}},{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}},{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}],"return":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorMetadataV1","typeArguments":[]}}]},"new_unverified_validator_operation_cap_and_transfer":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"next_epoch_authority_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}}]},"next_epoch_gas_price":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"next_epoch_network_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}}]},"next_epoch_network_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}}]},"next_epoch_p2p_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}}]},"next_epoch_primary_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}]}}}]},"next_epoch_proof_of_possession":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}}]},"next_epoch_protocol_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"option","name":"Option","typeArguments":[{"Vector":"U8"}]}}}]},"next_epoch_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"operation_cap_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}]},"p2p_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"pending_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"pending_stake_withdraw_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"pool_token_exchange_rate_at_epoch":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]},"primary_address":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x1","module":"string","name":"String","typeArguments":[]}}}]},"process_pending_stakes_and_withdraws":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"project_url":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"url","name":"Url","typeArguments":[]}}}]},"proof_of_possession":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":"U8"}}]},"protocol_pubkey_bytes":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":"U8"}}]},"request_add_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_stake_at_genesis":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},"Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake_at_genesis_with_receipt":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_set_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"request_withdraw_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"set_candidate_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"set_voting_power":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},"U64"],"return":[]},"smaller_than":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Bool"]},"stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"staking_pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"total_stake":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"total_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]},"update_candidate_authority_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"}],"return":[]},"update_candidate_network_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_candidate_network_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_candidate_p2p_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_candidate_primary_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_candidate_protocol_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_description":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_image_url":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_name":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_authority_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"},{"Vector":"U8"}],"return":[]},"update_next_epoch_network_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_network_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_p2p_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_primary_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_next_epoch_protocol_pubkey":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"update_project_url":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"Vector":"U8"}],"return":[]},"validate_metadata":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorMetadataV1","typeArguments":[]}}}],"return":[]},"validate_metadata_bcs":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Vector":"U8"}],"return":[]},"voting_power":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["U64"]}}},"validator_cap":{"fileFormatVersion":6,"address":"0x3","name":"validator_cap","friends":[{"address":"0x3","name":"iota_system_state_inner"},{"address":"0x3","name":"validator"},{"address":"0x3","name":"validator_set"}],"structs":{"UnverifiedValidatorOperationCap":{"abilities":{"abilities":["Store","Key"]},"typeParameters":[],"fields":[{"name":"id","type":{"Struct":{"address":"0x2","module":"object","name":"UID","typeArguments":[]}}},{"name":"authorizer_validator_address","type":"Address"}]},"ValidatorOperationCap":{"abilities":{"abilities":["Drop"]},"typeParameters":[],"fields":[{"name":"authorizer_validator_address","type":"Address"}]}},"exposedFunctions":{"new_from_unverified":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"validator_cap","name":"ValidatorOperationCap","typeArguments":[]}}]},"new_unverified_validator_operation_cap_and_transfer":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":["Address",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"unverified_operation_cap_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}}],"return":[{"Reference":"Address"}]},"verified_operation_cap_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"ValidatorOperationCap","typeArguments":[]}}}],"return":[{"Reference":"Address"}]}}},"validator_set":{"fileFormatVersion":6,"address":"0x3","name":"validator_set","friends":[{"address":"0x3","name":"genesis"},{"address":"0x3","name":"iota_system_state_inner"}],"structs":{"CommitteeValidatorJoinEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"staking_pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}]},"CommitteeValidatorLeaveEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"staking_pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}]},"ValidatorEpochInfoEventV1":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"reference_gas_survey_quote","type":"U64"},{"name":"stake","type":"U64"},{"name":"voting_power","type":"U64"},{"name":"commission_rate","type":"U64"},{"name":"pool_staking_reward","type":"U64"},{"name":"pool_token_exchange_rate","type":{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}},{"name":"tallying_rule_reporters","type":{"Vector":"Address"}},{"name":"tallying_rule_global_score","type":"U64"}]},"ValidatorJoinEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"staking_pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}]},"ValidatorLeaveEvent":{"abilities":{"abilities":["Copy","Drop"]},"typeParameters":[],"fields":[{"name":"epoch","type":"U64"},{"name":"validator_address","type":"Address"},{"name":"staking_pool_id","type":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}},{"name":"is_voluntary","type":"Bool"}]},"ValidatorSetV1":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"total_stake","type":"U64"},{"name":"active_validators","type":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"name":"pending_active_validators","type":{"Struct":{"address":"0x2","module":"table_vec","name":"TableVec","typeArguments":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}]}}},{"name":"pending_removals","type":{"Vector":"U64"}},{"name":"staking_pool_mappings","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}},{"name":"inactive_validators","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]}}},{"name":"validator_candidates","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["Address",{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]}}},{"name":"at_risk_validators","type":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address","U64"]}}},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]},"ValidatorSetV2":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"total_stake","type":"U64"},{"name":"active_validators","type":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"name":"committee_members","type":{"Vector":"U64"}},{"name":"pending_active_validators","type":{"Struct":{"address":"0x2","module":"table_vec","name":"TableVec","typeArguments":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}]}}},{"name":"pending_removals","type":{"Vector":"U64"}},{"name":"staking_pool_mappings","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}},{"name":"inactive_validators","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]}}},{"name":"validator_candidates","type":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["Address",{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]}}},{"name":"at_risk_validators","type":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address","U64"]}}},{"name":"extra_fields","type":{"Struct":{"address":"0x2","module":"bag","name":"Bag","typeArguments":[]}}}]}},"exposedFunctions":{"active_validator_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"active_validators":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}}],"return":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}}]},"active_validators_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}}]},"advance_epoch":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"vec_map","name":"VecMap","typeArguments":["Address",{"Struct":{"address":"0x2","module":"vec_set","name":"VecSet","typeArguments":["Address"]}}]}}},"U64","U64","U64","U64","U64",{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"assert_no_pending_or_active_duplicates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":[]},"committee_validator_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":[{"Vector":"Address"}]},"derive_reference_gas_price":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}}],"return":["U64"]},"get_active_or_pending_or_candidate_validator_ref":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address","U8"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_active_validator_ref":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_active_validator_ref_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_committee_validator_ref_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_pending_validator_ref":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_pending_validator_ref_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":[{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_validator_mut":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},"Address"],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_validator_mut_with_ctx":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_validator_mut_with_ctx_including_candidates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"get_validator_mut_with_verified_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"ValidatorOperationCap","typeArguments":[]}}},"Bool"],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]},"is_active_validator_by_iota_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["Bool"]},"is_committee_validator_by_iota_address":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["Bool"]},"is_duplicate_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"Reference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}],"return":["Bool"]},"is_inactive_validator":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}],"return":["Bool"]},"is_inactive_validator_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}],"return":["Bool"]},"is_validator_candidate":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":["Bool"]},"is_validator_candidate_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["Bool"]},"new_v1":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}]},"next_epoch_validator_count":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":["U64"]},"pool_exchange_rates":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":["U64",{"Struct":{"address":"0x3","module":"staking_pool","name":"PoolTokenExchangeRate","typeArguments":[]}}]}}}]},"process_new_committee":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"U64",{"Vector":"Address"},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address",{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}}]},"request_add_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"U64",{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_add_validator_candidate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_remove_validator_candidate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_set_commission_rate":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"U64",{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[]},"request_withdraw_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Struct":{"address":"0x3","module":"staking_pool","name":"StakedIota","typeArguments":[]}},{"Reference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x2","module":"balance","name":"Balance","typeArguments":[{"Struct":{"address":"0x2","module":"iota","name":"IOTA","typeArguments":[]}}]}}]},"select_committee_members_top_n_stakers":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"U64"],"return":[{"Vector":"U64"}]},"staking_pool_mappings":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}}]},"staking_pool_mappings_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":[{"Reference":{"Struct":{"address":"0x2","module":"table","name":"Table","typeArguments":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}},"Address"]}}}]},"sum_committee_voting_power_by_addresses":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Vector":"Address"}}],"return":["U64"]},"sum_voting_power_by_addresses":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"Reference":{"Vector":"Address"}}],"return":["U64"]},"total_stake":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}}],"return":["U64"]},"total_stake_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}}],"return":["U64"]},"v1_to_v2":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}],"return":[{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}]},"validator_address_by_pool_id_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}}],"return":["Address"]},"validator_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_stake_amount_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_staking_pool_id":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"validator_staking_pool_id_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":[{"Struct":{"address":"0x2","module":"object","name":"ID","typeArguments":[]}}]},"validator_total_stake_amount":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_total_stake_amount_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_voting_power":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV1","typeArguments":[]}}},"Address"],"return":["U64"]},"validator_voting_power_inner":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},"Address"],"return":["U64"]},"verify_cap":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_set","name":"ValidatorSetV2","typeArguments":[]}}},{"Reference":{"Struct":{"address":"0x3","module":"validator_cap","name":"UnverifiedValidatorOperationCap","typeArguments":[]}}},"U8"],"return":[{"Struct":{"address":"0x3","module":"validator_cap","name":"ValidatorOperationCap","typeArguments":[]}}]}}},"validator_wrapper":{"fileFormatVersion":6,"address":"0x3","name":"validator_wrapper","friends":[{"address":"0x3","name":"validator_set"}],"structs":{"Validator":{"abilities":{"abilities":["Store"]},"typeParameters":[],"fields":[{"name":"inner","type":{"Struct":{"address":"0x2","module":"versioned","name":"Versioned","typeArguments":[]}}}]}},"exposedFunctions":{"create_v1":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}},{"MutableReference":{"Struct":{"address":"0x2","module":"tx_context","name":"TxContext","typeArguments":[]}}}],"return":[{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}]},"destroy":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}],"return":[{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}]},"load_validator_maybe_upgrade":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator_wrapper","name":"Validator","typeArguments":[]}}}],"return":[{"MutableReference":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}]}}},"voting_power":{"fileFormatVersion":6,"address":"0x3","name":"voting_power","friends":[{"address":"0x3","name":"validator_set"}],"structs":{"VotingPowerInfoV1":{"abilities":{"abilities":["Drop"]},"typeParameters":[],"fields":[{"name":"validator_index","type":"U64"},{"name":"voting_power","type":"U64"},{"name":"stake","type":"U64"}]}},"exposedFunctions":{"quorum_threshold":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[],"return":["U64"]},"set_voting_power":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Vector":"U64"}},{"MutableReference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}}],"return":[]},"total_committee_stake":{"visibility":"Friend","isEntry":false,"typeParameters":[],"parameters":[{"Reference":{"Vector":{"Struct":{"address":"0x3","module":"validator","name":"ValidatorV1","typeArguments":[]}}}},{"Reference":{"Vector":"U64"}}],"return":["U64"]},"total_voting_power":{"visibility":"Public","isEntry":false,"typeParameters":[],"parameters":[],"return":["U64"]}}}}',
|
11133
11070
|
);
|
11134
11071
|
|
11135
11072
|
export function loadAllTypes(coder: MoveCoder) {
|