@super-protocol/sdk-js 2.0.2-beta.2 → 2.0.2-beta.5
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/build/contracts/abi.d.ts +182 -164
- package/build/contracts/abi.js +226 -201
- package/build/models/TCB.d.ts +5 -7
- package/build/models/TCB.js +24 -23
- package/build/models/TeeOffer.js +22 -15
- package/build/staticModels/Consensus.d.ts +7 -1
- package/build/staticModels/Consensus.js +31 -1
- package/build/types/Consensus.d.ts +15 -20
- package/build/types/Consensus.js +2 -9
- package/package.json +2 -2
package/build/contracts/abi.d.ts
CHANGED
|
@@ -1187,9 +1187,21 @@ export declare const abi: readonly [{
|
|
|
1187
1187
|
readonly name: "getTcbById";
|
|
1188
1188
|
readonly outputs: readonly [{
|
|
1189
1189
|
readonly components: readonly [{
|
|
1190
|
-
readonly internalType: "
|
|
1191
|
-
readonly name: "
|
|
1192
|
-
readonly type: "
|
|
1190
|
+
readonly internalType: "uint256";
|
|
1191
|
+
readonly name: "publicDataId";
|
|
1192
|
+
readonly type: "uint256";
|
|
1193
|
+
}, {
|
|
1194
|
+
readonly internalType: "uint256";
|
|
1195
|
+
readonly name: "utilityDataId";
|
|
1196
|
+
readonly type: "uint256";
|
|
1197
|
+
}, {
|
|
1198
|
+
readonly internalType: "enum TcbStatus";
|
|
1199
|
+
readonly name: "status";
|
|
1200
|
+
readonly type: "uint8";
|
|
1201
|
+
}, {
|
|
1202
|
+
readonly internalType: "uint256";
|
|
1203
|
+
readonly name: "previousTcb";
|
|
1204
|
+
readonly type: "uint256";
|
|
1193
1205
|
}, {
|
|
1194
1206
|
readonly internalType: "uint256";
|
|
1195
1207
|
readonly name: "timeInitialized";
|
|
@@ -1199,83 +1211,37 @@ export declare const abi: readonly [{
|
|
|
1199
1211
|
readonly name: "timeAdded";
|
|
1200
1212
|
readonly type: "uint256";
|
|
1201
1213
|
}, {
|
|
1202
|
-
readonly
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
readonly type: "uint256";
|
|
1206
|
-
}, {
|
|
1207
|
-
readonly internalType: "bytes32";
|
|
1208
|
-
readonly name: "deviceID";
|
|
1209
|
-
readonly type: "bytes32";
|
|
1210
|
-
}, {
|
|
1211
|
-
readonly internalType: "uint256";
|
|
1212
|
-
readonly name: "benchmark";
|
|
1213
|
-
readonly type: "uint256";
|
|
1214
|
-
}, {
|
|
1215
|
-
readonly internalType: "string";
|
|
1216
|
-
readonly name: "properties";
|
|
1217
|
-
readonly type: "string";
|
|
1218
|
-
}];
|
|
1219
|
-
readonly internalType: "struct TcbPublicData";
|
|
1220
|
-
readonly name: "publicData";
|
|
1221
|
-
readonly type: "tuple";
|
|
1214
|
+
readonly internalType: "uint256";
|
|
1215
|
+
readonly name: "lastBlocksTakenAmount";
|
|
1216
|
+
readonly type: "uint256";
|
|
1222
1217
|
}, {
|
|
1223
|
-
readonly
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
readonly type: "uint256[]";
|
|
1227
|
-
}, {
|
|
1228
|
-
readonly internalType: "enum TcbVerifiedStatus[]";
|
|
1229
|
-
readonly name: "checkingBlockMarks";
|
|
1230
|
-
readonly type: "uint8[]";
|
|
1231
|
-
}, {
|
|
1232
|
-
readonly internalType: "uint256";
|
|
1233
|
-
readonly name: "lastBlocksTakenAmount";
|
|
1234
|
-
readonly type: "uint256";
|
|
1235
|
-
}, {
|
|
1236
|
-
readonly internalType: "uint256";
|
|
1237
|
-
readonly name: "suspiciousBlocksTakenAmount";
|
|
1238
|
-
readonly type: "uint256";
|
|
1239
|
-
}, {
|
|
1240
|
-
readonly internalType: "uint16";
|
|
1241
|
-
readonly name: "negative";
|
|
1242
|
-
readonly type: "uint16";
|
|
1243
|
-
}, {
|
|
1244
|
-
readonly internalType: "uint16";
|
|
1245
|
-
readonly name: "positive";
|
|
1246
|
-
readonly type: "uint16";
|
|
1247
|
-
}, {
|
|
1248
|
-
readonly internalType: "uint256";
|
|
1249
|
-
readonly name: "previousTcb";
|
|
1250
|
-
readonly type: "uint256";
|
|
1251
|
-
}, {
|
|
1252
|
-
readonly internalType: "bool";
|
|
1253
|
-
readonly name: "lastBlocksTaken";
|
|
1254
|
-
readonly type: "bool";
|
|
1255
|
-
}, {
|
|
1256
|
-
readonly internalType: "bool";
|
|
1257
|
-
readonly name: "suspiciousBlocksTaken";
|
|
1258
|
-
readonly type: "bool";
|
|
1259
|
-
}, {
|
|
1260
|
-
readonly internalType: "bool";
|
|
1261
|
-
readonly name: "assignedToEpoch_DEPRECATED";
|
|
1262
|
-
readonly type: "bool";
|
|
1263
|
-
}, {
|
|
1264
|
-
readonly internalType: "bool";
|
|
1265
|
-
readonly name: "checked";
|
|
1266
|
-
readonly type: "bool";
|
|
1267
|
-
}, {
|
|
1268
|
-
readonly internalType: "bool";
|
|
1269
|
-
readonly name: "rewardClaimed";
|
|
1270
|
-
readonly type: "bool";
|
|
1271
|
-
}];
|
|
1272
|
-
readonly internalType: "struct TcbUtilityData";
|
|
1273
|
-
readonly name: "utilData";
|
|
1274
|
-
readonly type: "tuple";
|
|
1218
|
+
readonly internalType: "uint256";
|
|
1219
|
+
readonly name: "suspiciousBlocksTakenAmount";
|
|
1220
|
+
readonly type: "uint256";
|
|
1275
1221
|
}, {
|
|
1276
|
-
readonly internalType: "
|
|
1277
|
-
readonly name: "
|
|
1278
|
-
readonly type: "
|
|
1222
|
+
readonly internalType: "uint16";
|
|
1223
|
+
readonly name: "negative";
|
|
1224
|
+
readonly type: "uint16";
|
|
1225
|
+
}, {
|
|
1226
|
+
readonly internalType: "uint16";
|
|
1227
|
+
readonly name: "positive";
|
|
1228
|
+
readonly type: "uint16";
|
|
1229
|
+
}, {
|
|
1230
|
+
readonly internalType: "bool";
|
|
1231
|
+
readonly name: "lastBlocksTaken";
|
|
1232
|
+
readonly type: "bool";
|
|
1233
|
+
}, {
|
|
1234
|
+
readonly internalType: "bool";
|
|
1235
|
+
readonly name: "suspiciousBlocksTaken";
|
|
1236
|
+
readonly type: "bool";
|
|
1237
|
+
}, {
|
|
1238
|
+
readonly internalType: "bool";
|
|
1239
|
+
readonly name: "checked";
|
|
1240
|
+
readonly type: "bool";
|
|
1241
|
+
}, {
|
|
1242
|
+
readonly internalType: "bool";
|
|
1243
|
+
readonly name: "rewardClaimed";
|
|
1244
|
+
readonly type: "bool";
|
|
1279
1245
|
}];
|
|
1280
1246
|
readonly internalType: "struct Tcb";
|
|
1281
1247
|
readonly name: "";
|
|
@@ -1297,6 +1263,68 @@ export declare const abi: readonly [{
|
|
|
1297
1263
|
}];
|
|
1298
1264
|
readonly stateMutability: "view";
|
|
1299
1265
|
readonly type: "function";
|
|
1266
|
+
}, {
|
|
1267
|
+
readonly inputs: readonly [{
|
|
1268
|
+
readonly internalType: "uint256[]";
|
|
1269
|
+
readonly name: "tcbIds";
|
|
1270
|
+
readonly type: "uint256[]";
|
|
1271
|
+
}];
|
|
1272
|
+
readonly name: "getTcbsPublicData";
|
|
1273
|
+
readonly outputs: readonly [{
|
|
1274
|
+
readonly components: readonly [{
|
|
1275
|
+
readonly internalType: "uint256[]";
|
|
1276
|
+
readonly name: "checkingTcbIds";
|
|
1277
|
+
readonly type: "uint256[]";
|
|
1278
|
+
}, {
|
|
1279
|
+
readonly internalType: "enum TcbVerifiedStatus[]";
|
|
1280
|
+
readonly name: "checkingTcbMarks";
|
|
1281
|
+
readonly type: "uint8[]";
|
|
1282
|
+
}, {
|
|
1283
|
+
readonly internalType: "bytes32";
|
|
1284
|
+
readonly name: "deviceId";
|
|
1285
|
+
readonly type: "bytes32";
|
|
1286
|
+
}, {
|
|
1287
|
+
readonly internalType: "uint256";
|
|
1288
|
+
readonly name: "benchmark";
|
|
1289
|
+
readonly type: "uint256";
|
|
1290
|
+
}, {
|
|
1291
|
+
readonly internalType: "string";
|
|
1292
|
+
readonly name: "properties";
|
|
1293
|
+
readonly type: "string";
|
|
1294
|
+
}];
|
|
1295
|
+
readonly internalType: "struct TcbPublicData[]";
|
|
1296
|
+
readonly name: "";
|
|
1297
|
+
readonly type: "tuple[]";
|
|
1298
|
+
}];
|
|
1299
|
+
readonly stateMutability: "view";
|
|
1300
|
+
readonly type: "function";
|
|
1301
|
+
}, {
|
|
1302
|
+
readonly inputs: readonly [{
|
|
1303
|
+
readonly internalType: "uint256[]";
|
|
1304
|
+
readonly name: "tcbIds";
|
|
1305
|
+
readonly type: "uint256[]";
|
|
1306
|
+
}];
|
|
1307
|
+
readonly name: "getTcbsUtilityData";
|
|
1308
|
+
readonly outputs: readonly [{
|
|
1309
|
+
readonly components: readonly [{
|
|
1310
|
+
readonly internalType: "uint256";
|
|
1311
|
+
readonly name: "teeOfferId";
|
|
1312
|
+
readonly type: "uint256";
|
|
1313
|
+
}, {
|
|
1314
|
+
readonly internalType: "string";
|
|
1315
|
+
readonly name: "pubKey";
|
|
1316
|
+
readonly type: "string";
|
|
1317
|
+
}, {
|
|
1318
|
+
readonly internalType: "string";
|
|
1319
|
+
readonly name: "quote";
|
|
1320
|
+
readonly type: "string";
|
|
1321
|
+
}];
|
|
1322
|
+
readonly internalType: "struct TcbUtilityData[]";
|
|
1323
|
+
readonly name: "";
|
|
1324
|
+
readonly type: "tuple[]";
|
|
1325
|
+
}];
|
|
1326
|
+
readonly stateMutability: "view";
|
|
1327
|
+
readonly type: "function";
|
|
1300
1328
|
}, {
|
|
1301
1329
|
readonly inputs: readonly [{
|
|
1302
1330
|
readonly internalType: "uint256";
|
|
@@ -1376,12 +1404,16 @@ export declare const abi: readonly [{
|
|
|
1376
1404
|
readonly type: "string";
|
|
1377
1405
|
}, {
|
|
1378
1406
|
readonly internalType: "bytes32";
|
|
1379
|
-
readonly name: "
|
|
1407
|
+
readonly name: "deviceId";
|
|
1380
1408
|
readonly type: "bytes32";
|
|
1381
1409
|
}, {
|
|
1382
1410
|
readonly internalType: "string";
|
|
1383
1411
|
readonly name: "quote";
|
|
1384
1412
|
readonly type: "string";
|
|
1413
|
+
}, {
|
|
1414
|
+
readonly internalType: "string";
|
|
1415
|
+
readonly name: "pubKey";
|
|
1416
|
+
readonly type: "string";
|
|
1385
1417
|
}];
|
|
1386
1418
|
readonly name: "setTcbData";
|
|
1387
1419
|
readonly outputs: readonly [];
|
|
@@ -5912,7 +5944,7 @@ export declare const abi: readonly [{
|
|
|
5912
5944
|
readonly type: "uint256";
|
|
5913
5945
|
}, {
|
|
5914
5946
|
readonly internalType: "bytes32";
|
|
5915
|
-
readonly name: "
|
|
5947
|
+
readonly name: "deviceId";
|
|
5916
5948
|
readonly type: "bytes32";
|
|
5917
5949
|
}];
|
|
5918
5950
|
readonly name: "banTeeOffer";
|
|
@@ -5926,7 +5958,7 @@ export declare const abi: readonly [{
|
|
|
5926
5958
|
readonly type: "uint256";
|
|
5927
5959
|
}, {
|
|
5928
5960
|
readonly internalType: "bytes32";
|
|
5929
|
-
readonly name: "
|
|
5961
|
+
readonly name: "deviceId";
|
|
5930
5962
|
readonly type: "bytes32";
|
|
5931
5963
|
}];
|
|
5932
5964
|
readonly name: "blockTeeOffer";
|
|
@@ -5960,7 +5992,7 @@ export declare const abi: readonly [{
|
|
|
5960
5992
|
}, {
|
|
5961
5993
|
readonly inputs: readonly [{
|
|
5962
5994
|
readonly internalType: "bytes32";
|
|
5963
|
-
readonly name: "
|
|
5995
|
+
readonly name: "deviceId";
|
|
5964
5996
|
readonly type: "bytes32";
|
|
5965
5997
|
}];
|
|
5966
5998
|
readonly name: "getTeeOfferByDeviceId";
|
|
@@ -6052,7 +6084,7 @@ export declare const abi: readonly [{
|
|
|
6052
6084
|
readonly type: "uint256";
|
|
6053
6085
|
}, {
|
|
6054
6086
|
readonly internalType: "bytes32";
|
|
6055
|
-
readonly name: "
|
|
6087
|
+
readonly name: "deviceId";
|
|
6056
6088
|
readonly type: "bytes32";
|
|
6057
6089
|
}];
|
|
6058
6090
|
readonly name: "setTeeDeviceId";
|
|
@@ -6680,6 +6712,26 @@ export declare const abi: readonly [{
|
|
|
6680
6712
|
readonly outputs: readonly [];
|
|
6681
6713
|
readonly stateMutability: "nonpayable";
|
|
6682
6714
|
readonly type: "function";
|
|
6715
|
+
}, {
|
|
6716
|
+
readonly inputs: readonly [];
|
|
6717
|
+
readonly name: "deployer";
|
|
6718
|
+
readonly outputs: readonly [{
|
|
6719
|
+
readonly internalType: "address";
|
|
6720
|
+
readonly name: "";
|
|
6721
|
+
readonly type: "address";
|
|
6722
|
+
}];
|
|
6723
|
+
readonly stateMutability: "view";
|
|
6724
|
+
readonly type: "function";
|
|
6725
|
+
}, {
|
|
6726
|
+
readonly inputs: readonly [];
|
|
6727
|
+
readonly name: "deploymentBlockNumber";
|
|
6728
|
+
readonly outputs: readonly [{
|
|
6729
|
+
readonly internalType: "uint64";
|
|
6730
|
+
readonly name: "";
|
|
6731
|
+
readonly type: "uint64";
|
|
6732
|
+
}];
|
|
6733
|
+
readonly stateMutability: "view";
|
|
6734
|
+
readonly type: "function";
|
|
6683
6735
|
}, {
|
|
6684
6736
|
readonly anonymous: false;
|
|
6685
6737
|
readonly inputs: readonly [{
|
|
@@ -7215,9 +7267,21 @@ export declare const abi: readonly [{
|
|
|
7215
7267
|
readonly name: "getTcbById";
|
|
7216
7268
|
readonly outputs: readonly [{
|
|
7217
7269
|
readonly components: readonly [{
|
|
7218
|
-
readonly internalType: "
|
|
7219
|
-
readonly name: "
|
|
7220
|
-
readonly type: "
|
|
7270
|
+
readonly internalType: "uint256";
|
|
7271
|
+
readonly name: "publicDataId";
|
|
7272
|
+
readonly type: "uint256";
|
|
7273
|
+
}, {
|
|
7274
|
+
readonly internalType: "uint256";
|
|
7275
|
+
readonly name: "utilityDataId";
|
|
7276
|
+
readonly type: "uint256";
|
|
7277
|
+
}, {
|
|
7278
|
+
readonly internalType: "enum TcbStatus";
|
|
7279
|
+
readonly name: "status";
|
|
7280
|
+
readonly type: "uint8";
|
|
7281
|
+
}, {
|
|
7282
|
+
readonly internalType: "uint256";
|
|
7283
|
+
readonly name: "previousTcb";
|
|
7284
|
+
readonly type: "uint256";
|
|
7221
7285
|
}, {
|
|
7222
7286
|
readonly internalType: "uint256";
|
|
7223
7287
|
readonly name: "timeInitialized";
|
|
@@ -7227,83 +7291,37 @@ export declare const abi: readonly [{
|
|
|
7227
7291
|
readonly name: "timeAdded";
|
|
7228
7292
|
readonly type: "uint256";
|
|
7229
7293
|
}, {
|
|
7230
|
-
readonly
|
|
7231
|
-
|
|
7232
|
-
|
|
7233
|
-
readonly type: "uint256";
|
|
7234
|
-
}, {
|
|
7235
|
-
readonly internalType: "bytes32";
|
|
7236
|
-
readonly name: "deviceID";
|
|
7237
|
-
readonly type: "bytes32";
|
|
7238
|
-
}, {
|
|
7239
|
-
readonly internalType: "uint256";
|
|
7240
|
-
readonly name: "benchmark";
|
|
7241
|
-
readonly type: "uint256";
|
|
7242
|
-
}, {
|
|
7243
|
-
readonly internalType: "string";
|
|
7244
|
-
readonly name: "properties";
|
|
7245
|
-
readonly type: "string";
|
|
7246
|
-
}];
|
|
7247
|
-
readonly internalType: "struct TcbPublicData";
|
|
7248
|
-
readonly name: "publicData";
|
|
7249
|
-
readonly type: "tuple";
|
|
7294
|
+
readonly internalType: "uint256";
|
|
7295
|
+
readonly name: "lastBlocksTakenAmount";
|
|
7296
|
+
readonly type: "uint256";
|
|
7250
7297
|
}, {
|
|
7251
|
-
readonly
|
|
7252
|
-
|
|
7253
|
-
|
|
7254
|
-
readonly type: "uint256[]";
|
|
7255
|
-
}, {
|
|
7256
|
-
readonly internalType: "enum TcbVerifiedStatus[]";
|
|
7257
|
-
readonly name: "checkingBlockMarks";
|
|
7258
|
-
readonly type: "uint8[]";
|
|
7259
|
-
}, {
|
|
7260
|
-
readonly internalType: "uint256";
|
|
7261
|
-
readonly name: "lastBlocksTakenAmount";
|
|
7262
|
-
readonly type: "uint256";
|
|
7263
|
-
}, {
|
|
7264
|
-
readonly internalType: "uint256";
|
|
7265
|
-
readonly name: "suspiciousBlocksTakenAmount";
|
|
7266
|
-
readonly type: "uint256";
|
|
7267
|
-
}, {
|
|
7268
|
-
readonly internalType: "uint16";
|
|
7269
|
-
readonly name: "negative";
|
|
7270
|
-
readonly type: "uint16";
|
|
7271
|
-
}, {
|
|
7272
|
-
readonly internalType: "uint16";
|
|
7273
|
-
readonly name: "positive";
|
|
7274
|
-
readonly type: "uint16";
|
|
7275
|
-
}, {
|
|
7276
|
-
readonly internalType: "uint256";
|
|
7277
|
-
readonly name: "previousTcb";
|
|
7278
|
-
readonly type: "uint256";
|
|
7279
|
-
}, {
|
|
7280
|
-
readonly internalType: "bool";
|
|
7281
|
-
readonly name: "lastBlocksTaken";
|
|
7282
|
-
readonly type: "bool";
|
|
7283
|
-
}, {
|
|
7284
|
-
readonly internalType: "bool";
|
|
7285
|
-
readonly name: "suspiciousBlocksTaken";
|
|
7286
|
-
readonly type: "bool";
|
|
7287
|
-
}, {
|
|
7288
|
-
readonly internalType: "bool";
|
|
7289
|
-
readonly name: "assignedToEpoch_DEPRECATED";
|
|
7290
|
-
readonly type: "bool";
|
|
7291
|
-
}, {
|
|
7292
|
-
readonly internalType: "bool";
|
|
7293
|
-
readonly name: "checked";
|
|
7294
|
-
readonly type: "bool";
|
|
7295
|
-
}, {
|
|
7296
|
-
readonly internalType: "bool";
|
|
7297
|
-
readonly name: "rewardClaimed";
|
|
7298
|
-
readonly type: "bool";
|
|
7299
|
-
}];
|
|
7300
|
-
readonly internalType: "struct TcbUtilityData";
|
|
7301
|
-
readonly name: "utilData";
|
|
7302
|
-
readonly type: "tuple";
|
|
7298
|
+
readonly internalType: "uint256";
|
|
7299
|
+
readonly name: "suspiciousBlocksTakenAmount";
|
|
7300
|
+
readonly type: "uint256";
|
|
7303
7301
|
}, {
|
|
7304
|
-
readonly internalType: "
|
|
7305
|
-
readonly name: "
|
|
7306
|
-
readonly type: "
|
|
7302
|
+
readonly internalType: "uint16";
|
|
7303
|
+
readonly name: "negative";
|
|
7304
|
+
readonly type: "uint16";
|
|
7305
|
+
}, {
|
|
7306
|
+
readonly internalType: "uint16";
|
|
7307
|
+
readonly name: "positive";
|
|
7308
|
+
readonly type: "uint16";
|
|
7309
|
+
}, {
|
|
7310
|
+
readonly internalType: "bool";
|
|
7311
|
+
readonly name: "lastBlocksTaken";
|
|
7312
|
+
readonly type: "bool";
|
|
7313
|
+
}, {
|
|
7314
|
+
readonly internalType: "bool";
|
|
7315
|
+
readonly name: "suspiciousBlocksTaken";
|
|
7316
|
+
readonly type: "bool";
|
|
7317
|
+
}, {
|
|
7318
|
+
readonly internalType: "bool";
|
|
7319
|
+
readonly name: "checked";
|
|
7320
|
+
readonly type: "bool";
|
|
7321
|
+
}, {
|
|
7322
|
+
readonly internalType: "bool";
|
|
7323
|
+
readonly name: "rewardClaimed";
|
|
7324
|
+
readonly type: "bool";
|
|
7307
7325
|
}];
|
|
7308
7326
|
readonly internalType: "struct Tcb";
|
|
7309
7327
|
readonly name: "";
|
|
@@ -9393,7 +9411,7 @@ export declare const abi: readonly [{
|
|
|
9393
9411
|
readonly type: "uint256";
|
|
9394
9412
|
}, {
|
|
9395
9413
|
readonly internalType: "bytes32";
|
|
9396
|
-
readonly name: "
|
|
9414
|
+
readonly name: "deviceId";
|
|
9397
9415
|
readonly type: "bytes32";
|
|
9398
9416
|
}];
|
|
9399
9417
|
readonly name: "banTeeOffer";
|
|
@@ -9407,7 +9425,7 @@ export declare const abi: readonly [{
|
|
|
9407
9425
|
readonly type: "uint256";
|
|
9408
9426
|
}, {
|
|
9409
9427
|
readonly internalType: "bytes32";
|
|
9410
|
-
readonly name: "
|
|
9428
|
+
readonly name: "deviceId";
|
|
9411
9429
|
readonly type: "bytes32";
|
|
9412
9430
|
}];
|
|
9413
9431
|
readonly name: "blockTeeOffer";
|
|
@@ -9487,7 +9505,7 @@ export declare const abi: readonly [{
|
|
|
9487
9505
|
readonly type: "uint256";
|
|
9488
9506
|
}, {
|
|
9489
9507
|
readonly internalType: "bytes32";
|
|
9490
|
-
readonly name: "
|
|
9508
|
+
readonly name: "deviceId";
|
|
9491
9509
|
readonly type: "bytes32";
|
|
9492
9510
|
}];
|
|
9493
9511
|
readonly name: "setTeeDeviceId";
|