@onekeyfe/hd-transport 0.3.16 → 0.3.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -673,7 +673,7 @@ declare type CardanoSignTxInit = {
673
673
  collateral_inputs_count: number;
674
674
  required_signers_count: number;
675
675
  has_collateral_return?: boolean;
676
- total_collateral?: number;
676
+ total_collateral?: UintType;
677
677
  reference_inputs_count?: number;
678
678
  };
679
679
  declare type CardanoTxInput = {
@@ -1202,12 +1202,73 @@ declare type EosTxActionAck = {
1202
1202
  declare type EosSignedTx = {
1203
1203
  signature: string;
1204
1204
  };
1205
- declare type EthereumSignTypedData = {
1205
+ declare enum EthereumDefinitionType {
1206
+ NETWORK = 0,
1207
+ TOKEN = 1
1208
+ }
1209
+ declare type EthereumNetworkInfo = {
1210
+ chain_id: number;
1211
+ symbol: string;
1212
+ slip44: number;
1213
+ name: string;
1214
+ icon?: string;
1215
+ primary_color?: number;
1216
+ };
1217
+ declare type EthereumTokenInfo = {
1218
+ address: string;
1219
+ chain_id: number;
1220
+ symbol: string;
1221
+ decimals: number;
1222
+ name: string;
1223
+ };
1224
+ declare type EthereumDefinitions = {
1225
+ encoded_network?: ArrayBuffer;
1226
+ encoded_token?: ArrayBuffer;
1227
+ };
1228
+ declare type EthereumSignTypedDataOneKey = {
1206
1229
  address_n: number[];
1207
1230
  primary_type: string;
1208
1231
  metamask_v4_compat?: boolean;
1209
1232
  chain_id?: number;
1210
1233
  };
1234
+ declare type EthereumTypedDataStructRequestOneKey = {
1235
+ name: string;
1236
+ };
1237
+ declare type EthereumStructMemberOneKey = {
1238
+ type: EthereumFieldTypeOneKey;
1239
+ name: string;
1240
+ };
1241
+ declare type EthereumFieldTypeOneKey = {
1242
+ data_type: EthereumDataTypeOneKey;
1243
+ size?: number;
1244
+ entry_type?: EthereumFieldTypeOneKey;
1245
+ struct_name?: string;
1246
+ };
1247
+ declare enum EthereumDataTypeOneKey {
1248
+ UINT = 1,
1249
+ INT = 2,
1250
+ BYTES = 3,
1251
+ STRING = 4,
1252
+ BOOL = 5,
1253
+ ADDRESS = 6,
1254
+ ARRAY = 7,
1255
+ STRUCT = 8
1256
+ }
1257
+ declare type EthereumTypedDataStructAckOneKey = {
1258
+ members: EthereumStructMemberOneKey[];
1259
+ };
1260
+ declare type EthereumTypedDataValueRequestOneKey = {
1261
+ member_path: number[];
1262
+ };
1263
+ declare type EthereumTypedDataValueAckOneKey = {
1264
+ value: string;
1265
+ };
1266
+ declare type EthereumSignTypedData = {
1267
+ address_n: number[];
1268
+ primary_type: string;
1269
+ metamask_v4_compat?: boolean;
1270
+ definitions?: EthereumDefinitions;
1271
+ };
1211
1272
  declare type EthereumTypedDataStructRequest = {
1212
1273
  name: string;
1213
1274
  };
@@ -1240,11 +1301,96 @@ declare type EthereumTypedDataValueRequest = {
1240
1301
  declare type EthereumTypedDataValueAck = {
1241
1302
  value: string;
1242
1303
  };
1243
- declare type EthereumGetPublicKey = {
1304
+ declare type EthereumGetPublicKeyOneKey = {
1305
+ address_n: number[];
1306
+ show_display?: boolean;
1307
+ chain_id?: number;
1308
+ };
1309
+ declare type EthereumPublicKeyOneKey = {
1310
+ node: HDNodeType;
1311
+ xpub: string;
1312
+ };
1313
+ declare type EthereumGetAddressOneKey = {
1244
1314
  address_n: number[];
1245
1315
  show_display?: boolean;
1246
1316
  chain_id?: number;
1247
1317
  };
1318
+ declare type EthereumAddressOneKey = {
1319
+ _old_address?: string;
1320
+ address?: string;
1321
+ };
1322
+ declare type EthereumSignTxOneKey = {
1323
+ address_n: number[];
1324
+ nonce?: string;
1325
+ gas_price: string;
1326
+ gas_limit: string;
1327
+ to?: string;
1328
+ value?: string;
1329
+ data_initial_chunk?: string;
1330
+ data_length?: number;
1331
+ chain_id: number;
1332
+ tx_type?: number;
1333
+ };
1334
+ declare type EthereumAccessListOneKey = {
1335
+ address: string;
1336
+ storage_keys: string[];
1337
+ };
1338
+ declare type EthereumSignTxEIP1559OneKey = {
1339
+ address_n: number[];
1340
+ nonce: string;
1341
+ max_gas_fee: string;
1342
+ max_priority_fee: string;
1343
+ gas_limit: string;
1344
+ to?: string;
1345
+ value: string;
1346
+ data_initial_chunk?: string;
1347
+ data_length: number;
1348
+ chain_id: number;
1349
+ access_list: EthereumAccessListOneKey[];
1350
+ };
1351
+ declare type EthereumTxRequestOneKey = {
1352
+ data_length?: number;
1353
+ signature_v?: number;
1354
+ signature_r?: string;
1355
+ signature_s?: string;
1356
+ };
1357
+ declare type EthereumTxAckOneKey = {
1358
+ data_chunk: string;
1359
+ };
1360
+ declare type EthereumSignMessageOneKey = {
1361
+ address_n: number[];
1362
+ message: string;
1363
+ chain_id?: number;
1364
+ };
1365
+ declare type EthereumMessageSignatureOneKey = {
1366
+ signature: string;
1367
+ address: string;
1368
+ };
1369
+ declare type EthereumVerifyMessageOneKey = {
1370
+ signature: string;
1371
+ message: string;
1372
+ address: string;
1373
+ chain_id?: number;
1374
+ };
1375
+ declare type EthereumSignTypedHashOneKey = {
1376
+ address_n: number[];
1377
+ domain_separator_hash: string;
1378
+ message_hash?: string;
1379
+ chain_id?: number;
1380
+ };
1381
+ declare type EthereumTypedDataSignatureOneKey = {
1382
+ signature: string;
1383
+ address: string;
1384
+ };
1385
+ declare type EthereumSignMessageEIP712 = {
1386
+ address_n: number[];
1387
+ domain_hash?: string;
1388
+ message_hash?: string;
1389
+ };
1390
+ declare type EthereumGetPublicKey = {
1391
+ address_n: number[];
1392
+ show_display?: boolean;
1393
+ };
1248
1394
  declare type EthereumPublicKey = {
1249
1395
  node: HDNodeType;
1250
1396
  xpub: string;
@@ -1252,7 +1398,7 @@ declare type EthereumPublicKey = {
1252
1398
  declare type EthereumGetAddress = {
1253
1399
  address_n: number[];
1254
1400
  show_display?: boolean;
1255
- chain_id?: number;
1401
+ encoded_network?: ArrayBuffer;
1256
1402
  };
1257
1403
  declare type EthereumAddress = {
1258
1404
  _old_address?: string;
@@ -1269,6 +1415,7 @@ declare type EthereumSignTx = {
1269
1415
  data_length?: number;
1270
1416
  chain_id: number;
1271
1417
  tx_type?: number;
1418
+ definitions?: EthereumDefinitions;
1272
1419
  };
1273
1420
  declare type EthereumAccessList = {
1274
1421
  address: string;
@@ -1286,6 +1433,7 @@ declare type EthereumSignTxEIP1559 = {
1286
1433
  data_length: number;
1287
1434
  chain_id: number;
1288
1435
  access_list: EthereumAccessList[];
1436
+ definitions?: EthereumDefinitions;
1289
1437
  };
1290
1438
  declare type EthereumTxRequest = {
1291
1439
  data_length?: number;
@@ -1299,7 +1447,7 @@ declare type EthereumTxAck = {
1299
1447
  declare type EthereumSignMessage = {
1300
1448
  address_n: number[];
1301
1449
  message: string;
1302
- chain_id?: number;
1450
+ encoded_network?: ArrayBuffer;
1303
1451
  };
1304
1452
  declare type EthereumMessageSignature = {
1305
1453
  signature: string;
@@ -1309,18 +1457,12 @@ declare type EthereumVerifyMessage = {
1309
1457
  signature: string;
1310
1458
  message: string;
1311
1459
  address: string;
1312
- chain_id?: number;
1313
- };
1314
- declare type EthereumSignMessageEIP712 = {
1315
- address_n: number[];
1316
- domain_hash?: string;
1317
- message_hash?: string;
1318
1460
  };
1319
1461
  declare type EthereumSignTypedHash = {
1320
1462
  address_n: number[];
1321
1463
  domain_separator_hash: string;
1322
1464
  message_hash?: string;
1323
- chain_id?: number;
1465
+ encoded_network?: ArrayBuffer;
1324
1466
  };
1325
1467
  declare type EthereumTypedDataSignature = {
1326
1468
  signature: string;
@@ -2748,6 +2890,16 @@ declare type MessageType = {
2748
2890
  EosActionUnknown: EosActionUnknown;
2749
2891
  EosTxActionAck: EosTxActionAck;
2750
2892
  EosSignedTx: EosSignedTx;
2893
+ EthereumNetworkInfo: EthereumNetworkInfo;
2894
+ EthereumTokenInfo: EthereumTokenInfo;
2895
+ EthereumDefinitions: EthereumDefinitions;
2896
+ EthereumSignTypedDataOneKey: EthereumSignTypedDataOneKey;
2897
+ EthereumTypedDataStructRequestOneKey: EthereumTypedDataStructRequestOneKey;
2898
+ EthereumStructMemberOneKey: EthereumStructMemberOneKey;
2899
+ EthereumFieldTypeOneKey: EthereumFieldTypeOneKey;
2900
+ EthereumTypedDataStructAckOneKey: EthereumTypedDataStructAckOneKey;
2901
+ EthereumTypedDataValueRequestOneKey: EthereumTypedDataValueRequestOneKey;
2902
+ EthereumTypedDataValueAckOneKey: EthereumTypedDataValueAckOneKey;
2751
2903
  EthereumSignTypedData: EthereumSignTypedData;
2752
2904
  EthereumTypedDataStructRequest: EthereumTypedDataStructRequest;
2753
2905
  EthereumFieldType: EthereumFieldType;
@@ -2755,6 +2907,21 @@ declare type MessageType = {
2755
2907
  EthereumTypedDataStructAck: EthereumTypedDataStructAck;
2756
2908
  EthereumTypedDataValueRequest: EthereumTypedDataValueRequest;
2757
2909
  EthereumTypedDataValueAck: EthereumTypedDataValueAck;
2910
+ EthereumGetPublicKeyOneKey: EthereumGetPublicKeyOneKey;
2911
+ EthereumPublicKeyOneKey: EthereumPublicKeyOneKey;
2912
+ EthereumGetAddressOneKey: EthereumGetAddressOneKey;
2913
+ EthereumAddressOneKey: EthereumAddressOneKey;
2914
+ EthereumSignTxOneKey: EthereumSignTxOneKey;
2915
+ EthereumAccessListOneKey: EthereumAccessListOneKey;
2916
+ EthereumSignTxEIP1559OneKey: EthereumSignTxEIP1559OneKey;
2917
+ EthereumTxRequestOneKey: EthereumTxRequestOneKey;
2918
+ EthereumTxAckOneKey: EthereumTxAckOneKey;
2919
+ EthereumSignMessageOneKey: EthereumSignMessageOneKey;
2920
+ EthereumMessageSignatureOneKey: EthereumMessageSignatureOneKey;
2921
+ EthereumVerifyMessageOneKey: EthereumVerifyMessageOneKey;
2922
+ EthereumSignTypedHashOneKey: EthereumSignTypedHashOneKey;
2923
+ EthereumTypedDataSignatureOneKey: EthereumTypedDataSignatureOneKey;
2924
+ EthereumSignMessageEIP712: EthereumSignMessageEIP712;
2758
2925
  EthereumGetPublicKey: EthereumGetPublicKey;
2759
2926
  EthereumPublicKey: EthereumPublicKey;
2760
2927
  EthereumGetAddress: EthereumGetAddress;
@@ -2767,7 +2934,6 @@ declare type MessageType = {
2767
2934
  EthereumSignMessage: EthereumSignMessage;
2768
2935
  EthereumMessageSignature: EthereumMessageSignature;
2769
2936
  EthereumVerifyMessage: EthereumVerifyMessage;
2770
- EthereumSignMessageEIP712: EthereumSignMessageEIP712;
2771
2937
  EthereumSignTypedHash: EthereumSignTypedHash;
2772
2938
  EthereumTypedDataSignature: EthereumTypedDataSignature;
2773
2939
  FilecoinGetAddress: FilecoinGetAddress;
@@ -3246,6 +3412,20 @@ type messages_EosActionNewAccount = EosActionNewAccount;
3246
3412
  type messages_EosActionUnknown = EosActionUnknown;
3247
3413
  type messages_EosTxActionAck = EosTxActionAck;
3248
3414
  type messages_EosSignedTx = EosSignedTx;
3415
+ type messages_EthereumDefinitionType = EthereumDefinitionType;
3416
+ declare const messages_EthereumDefinitionType: typeof EthereumDefinitionType;
3417
+ type messages_EthereumNetworkInfo = EthereumNetworkInfo;
3418
+ type messages_EthereumTokenInfo = EthereumTokenInfo;
3419
+ type messages_EthereumDefinitions = EthereumDefinitions;
3420
+ type messages_EthereumSignTypedDataOneKey = EthereumSignTypedDataOneKey;
3421
+ type messages_EthereumTypedDataStructRequestOneKey = EthereumTypedDataStructRequestOneKey;
3422
+ type messages_EthereumStructMemberOneKey = EthereumStructMemberOneKey;
3423
+ type messages_EthereumFieldTypeOneKey = EthereumFieldTypeOneKey;
3424
+ type messages_EthereumDataTypeOneKey = EthereumDataTypeOneKey;
3425
+ declare const messages_EthereumDataTypeOneKey: typeof EthereumDataTypeOneKey;
3426
+ type messages_EthereumTypedDataStructAckOneKey = EthereumTypedDataStructAckOneKey;
3427
+ type messages_EthereumTypedDataValueRequestOneKey = EthereumTypedDataValueRequestOneKey;
3428
+ type messages_EthereumTypedDataValueAckOneKey = EthereumTypedDataValueAckOneKey;
3249
3429
  type messages_EthereumSignTypedData = EthereumSignTypedData;
3250
3430
  type messages_EthereumTypedDataStructRequest = EthereumTypedDataStructRequest;
3251
3431
  type messages_EthereumDataType = EthereumDataType;
@@ -3255,6 +3435,21 @@ type messages_EthereumStructMember = EthereumStructMember;
3255
3435
  type messages_EthereumTypedDataStructAck = EthereumTypedDataStructAck;
3256
3436
  type messages_EthereumTypedDataValueRequest = EthereumTypedDataValueRequest;
3257
3437
  type messages_EthereumTypedDataValueAck = EthereumTypedDataValueAck;
3438
+ type messages_EthereumGetPublicKeyOneKey = EthereumGetPublicKeyOneKey;
3439
+ type messages_EthereumPublicKeyOneKey = EthereumPublicKeyOneKey;
3440
+ type messages_EthereumGetAddressOneKey = EthereumGetAddressOneKey;
3441
+ type messages_EthereumAddressOneKey = EthereumAddressOneKey;
3442
+ type messages_EthereumSignTxOneKey = EthereumSignTxOneKey;
3443
+ type messages_EthereumAccessListOneKey = EthereumAccessListOneKey;
3444
+ type messages_EthereumSignTxEIP1559OneKey = EthereumSignTxEIP1559OneKey;
3445
+ type messages_EthereumTxRequestOneKey = EthereumTxRequestOneKey;
3446
+ type messages_EthereumTxAckOneKey = EthereumTxAckOneKey;
3447
+ type messages_EthereumSignMessageOneKey = EthereumSignMessageOneKey;
3448
+ type messages_EthereumMessageSignatureOneKey = EthereumMessageSignatureOneKey;
3449
+ type messages_EthereumVerifyMessageOneKey = EthereumVerifyMessageOneKey;
3450
+ type messages_EthereumSignTypedHashOneKey = EthereumSignTypedHashOneKey;
3451
+ type messages_EthereumTypedDataSignatureOneKey = EthereumTypedDataSignatureOneKey;
3452
+ type messages_EthereumSignMessageEIP712 = EthereumSignMessageEIP712;
3258
3453
  type messages_EthereumGetPublicKey = EthereumGetPublicKey;
3259
3454
  type messages_EthereumPublicKey = EthereumPublicKey;
3260
3455
  type messages_EthereumGetAddress = EthereumGetAddress;
@@ -3267,7 +3462,6 @@ type messages_EthereumTxAck = EthereumTxAck;
3267
3462
  type messages_EthereumSignMessage = EthereumSignMessage;
3268
3463
  type messages_EthereumMessageSignature = EthereumMessageSignature;
3269
3464
  type messages_EthereumVerifyMessage = EthereumVerifyMessage;
3270
- type messages_EthereumSignMessageEIP712 = EthereumSignMessageEIP712;
3271
3465
  type messages_EthereumSignTypedHash = EthereumSignTypedHash;
3272
3466
  type messages_EthereumTypedDataSignature = EthereumTypedDataSignature;
3273
3467
  type messages_FilecoinGetAddress = FilecoinGetAddress;
@@ -3767,6 +3961,18 @@ declare namespace messages {
3767
3961
  messages_EosActionUnknown as EosActionUnknown,
3768
3962
  messages_EosTxActionAck as EosTxActionAck,
3769
3963
  messages_EosSignedTx as EosSignedTx,
3964
+ messages_EthereumDefinitionType as EthereumDefinitionType,
3965
+ messages_EthereumNetworkInfo as EthereumNetworkInfo,
3966
+ messages_EthereumTokenInfo as EthereumTokenInfo,
3967
+ messages_EthereumDefinitions as EthereumDefinitions,
3968
+ messages_EthereumSignTypedDataOneKey as EthereumSignTypedDataOneKey,
3969
+ messages_EthereumTypedDataStructRequestOneKey as EthereumTypedDataStructRequestOneKey,
3970
+ messages_EthereumStructMemberOneKey as EthereumStructMemberOneKey,
3971
+ messages_EthereumFieldTypeOneKey as EthereumFieldTypeOneKey,
3972
+ messages_EthereumDataTypeOneKey as EthereumDataTypeOneKey,
3973
+ messages_EthereumTypedDataStructAckOneKey as EthereumTypedDataStructAckOneKey,
3974
+ messages_EthereumTypedDataValueRequestOneKey as EthereumTypedDataValueRequestOneKey,
3975
+ messages_EthereumTypedDataValueAckOneKey as EthereumTypedDataValueAckOneKey,
3770
3976
  messages_EthereumSignTypedData as EthereumSignTypedData,
3771
3977
  messages_EthereumTypedDataStructRequest as EthereumTypedDataStructRequest,
3772
3978
  messages_EthereumDataType as EthereumDataType,
@@ -3775,6 +3981,21 @@ declare namespace messages {
3775
3981
  messages_EthereumTypedDataStructAck as EthereumTypedDataStructAck,
3776
3982
  messages_EthereumTypedDataValueRequest as EthereumTypedDataValueRequest,
3777
3983
  messages_EthereumTypedDataValueAck as EthereumTypedDataValueAck,
3984
+ messages_EthereumGetPublicKeyOneKey as EthereumGetPublicKeyOneKey,
3985
+ messages_EthereumPublicKeyOneKey as EthereumPublicKeyOneKey,
3986
+ messages_EthereumGetAddressOneKey as EthereumGetAddressOneKey,
3987
+ messages_EthereumAddressOneKey as EthereumAddressOneKey,
3988
+ messages_EthereumSignTxOneKey as EthereumSignTxOneKey,
3989
+ messages_EthereumAccessListOneKey as EthereumAccessListOneKey,
3990
+ messages_EthereumSignTxEIP1559OneKey as EthereumSignTxEIP1559OneKey,
3991
+ messages_EthereumTxRequestOneKey as EthereumTxRequestOneKey,
3992
+ messages_EthereumTxAckOneKey as EthereumTxAckOneKey,
3993
+ messages_EthereumSignMessageOneKey as EthereumSignMessageOneKey,
3994
+ messages_EthereumMessageSignatureOneKey as EthereumMessageSignatureOneKey,
3995
+ messages_EthereumVerifyMessageOneKey as EthereumVerifyMessageOneKey,
3996
+ messages_EthereumSignTypedHashOneKey as EthereumSignTypedHashOneKey,
3997
+ messages_EthereumTypedDataSignatureOneKey as EthereumTypedDataSignatureOneKey,
3998
+ messages_EthereumSignMessageEIP712 as EthereumSignMessageEIP712,
3778
3999
  messages_EthereumGetPublicKey as EthereumGetPublicKey,
3779
4000
  messages_EthereumPublicKey as EthereumPublicKey,
3780
4001
  messages_EthereumGetAddress as EthereumGetAddress,
@@ -3787,7 +4008,6 @@ declare namespace messages {
3787
4008
  messages_EthereumSignMessage as EthereumSignMessage,
3788
4009
  messages_EthereumMessageSignature as EthereumMessageSignature,
3789
4010
  messages_EthereumVerifyMessage as EthereumVerifyMessage,
3790
- messages_EthereumSignMessageEIP712 as EthereumSignMessageEIP712,
3791
4011
  messages_EthereumSignTypedHash as EthereumSignTypedHash,
3792
4012
  messages_EthereumTypedDataSignature as EthereumTypedDataSignature,
3793
4013
  messages_FilecoinGetAddress as FilecoinGetAddress,
@@ -4093,4 +4313,4 @@ declare const _default: {
4093
4313
  decodeProtocol: typeof decodeProtocol;
4094
4314
  };
4095
4315
 
4096
- export { AcquireInput, Address, AlgorandAddress, AlgorandGetAddress, AlgorandSignTx, AlgorandSignedTx, AmountUnit, ApplyFlags, ApplySettings, AptosAddress, AptosGetAddress, AptosMessagePayload, AptosMessageSignature, AptosSignMessage, AptosSignTx, AptosSignedTx, AuthorizeCoinJoin, BIP32Address, BUFFER_SIZE, BackupDevice, BackupType, BatchGetPublickeys, BinanceAddress, BinanceCancelMsg, BinanceCoin, BinanceGetAddress, BinanceGetPublicKey, BinanceInputOutput, BinanceOrderMsg, BinanceOrderSide, BinanceOrderType, BinancePublicKey, BinanceSignTx, BinanceSignedTx, BinanceTimeInForce, BinanceTransferMsg, BinanceTxRequest, BixinBackupAck, BixinBackupDevice, BixinBackupDeviceAck, BixinBackupRequest, BixinLoadDevice, BixinMessageSE, BixinOutMessageSE, BixinPinInputOnDevice, BixinRestoreAck, BixinRestoreRequest, BixinSeedOperate, BixinVerifyDeviceAck, BixinVerifyDeviceRequest, BixinWhiteListAck, BixinWhiteListRequest, ButtonAck, ButtonRequest, ButtonRequestType, COMMON_HEADER_SIZE, Cancel, CancelAuthorization, Capability, CardanoAddress, CardanoAddressParametersType, CardanoAddressType, CardanoAssetGroup, CardanoBlockchainPointerType, CardanoCertificateType, CardanoDerivationType, CardanoGetAddress, CardanoGetNativeScriptHash, CardanoGetPublicKey, CardanoGovernanceRegistrationDelegation, CardanoGovernanceRegistrationFormat, CardanoGovernanceRegistrationParametersType, CardanoMessageSignature, CardanoNativeScript, CardanoNativeScriptHash, CardanoNativeScriptHashDisplayFormat, CardanoNativeScriptType, CardanoPoolMetadataType, CardanoPoolOwner, CardanoPoolParametersType, CardanoPoolRelayParameters, CardanoPoolRelayType, CardanoPublicKey, CardanoSignMessage, CardanoSignTxFinished, CardanoSignTxInit, CardanoToken, CardanoTxAuxiliaryData, CardanoTxAuxiliaryDataSupplement, CardanoTxAuxiliaryDataSupplementType, CardanoTxBodyHash, CardanoTxCertificate, CardanoTxCollateralInput, CardanoTxHostAck, CardanoTxInlineDatumChunk, CardanoTxInput, CardanoTxItemAck, CardanoTxMint, CardanoTxOutput, CardanoTxOutputSerializationFormat, CardanoTxReferenceInput, CardanoTxReferenceScriptChunk, CardanoTxRequiredSigner, CardanoTxSigningMode, CardanoTxWithdrawal, CardanoTxWitnessRequest, CardanoTxWitnessResponse, CardanoTxWitnessType, ChangeOutputScriptType, ChangePin, ChangeWipeCode, CipherKeyValue, CipheredKeyValue, CommandFlags, ConfluxAddress, ConfluxGetAddress, ConfluxMessageSignature, ConfluxSignMessage, ConfluxSignMessageCIP23, ConfluxSignTx, ConfluxTxAck, ConfluxTxRequest, CosmosAddress, CosmosGetAddress, CosmosSignTx, CosmosSignedTx, DecredStakingSpendType, Deprecated_PassphraseStateAck, Deprecated_PassphraseStateRequest, DeviceBackToBoot, DeviceEraseSector, DeviceInfo, DeviceInfoSettings, DoPreauthorized, ECDHSessionKey, EcdsaPublicKeys, EmmcDir, EmmcDirList, EmmcDirMake, EmmcDirRemove, EmmcFile, EmmcFileDelete, EmmcFileRead, EmmcFileWrite, EmmcFixPermission, EmmcPath, EmmcPathInfo, EndSession, Entropy, EntropyAck, EntropyRequest, Enum_BackupType, Enum_ButtonRequestType, Enum_Capability, Enum_InputScriptType, Enum_OutputScriptType, Enum_PinMatrixRequestType, Enum_RequestType, Enum_SafetyCheckLevel, Enum_WordRequestType, EosActionBuyRam, EosActionBuyRamBytes, EosActionCommon, EosActionDelegate, EosActionDeleteAuth, EosActionLinkAuth, EosActionNewAccount, EosActionRefund, EosActionSellRam, EosActionTransfer, EosActionUndelegate, EosActionUnknown, EosActionUnlinkAuth, EosActionUpdateAuth, EosActionVoteProducer, EosAsset, EosAuthorization, EosAuthorizationAccount, EosAuthorizationKey, EosAuthorizationWait, EosGetPublicKey, EosPermissionLevel, EosPublicKey, EosSignTx, EosSignedTx, EosTxActionAck, EosTxActionRequest, EosTxHeader, EthereumAccessList, EthereumAddress, EthereumDataType, EthereumFieldType, EthereumGetAddress, EthereumGetPublicKey, EthereumMessageSignature, EthereumPublicKey, EthereumSignMessage, EthereumSignMessageEIP712, EthereumSignTx, EthereumSignTxEIP1559, EthereumSignTypedData, EthereumSignTypedHash, EthereumStructMember, EthereumTxAck, EthereumTxRequest, EthereumTypedDataSignature, EthereumTypedDataStructAck, EthereumTypedDataStructRequest, EthereumTypedDataValueAck, EthereumTypedDataValueRequest, EthereumVerifyMessage, ExportType, Failure, FailureType, Features, FileInfo, FileInfoList, FilecoinAddress, FilecoinGetAddress, FilecoinSignTx, FilecoinSignedTx, FirmwareErase, FirmwareErase_ex, FirmwareRequest, FirmwareUpdateEmmc, FirmwareUpload, GetAddress, GetDeviceInfo, GetECDHSessionKey, GetEntropy, GetFeatures, GetNextU2FCounter, GetOwnershipId, GetOwnershipProof, GetPublicKey, GetPublicKeyMultiple, HDNodePathType, HDNodeType, HEADER_SIZE, IdentityType, Initialize, InputScriptType, InternalInputScriptType, KaspaAddress, KaspaGetAddress, KaspaSignTx, KaspaSignedTx, KaspaTxInputAck, KaspaTxInputRequest, ListResDir, LockDevice, MESSAGE_HEADER_BYTE, MESSAGE_TOP_CHAR, MessageFromOneKey, MessageKey, MessageResponse, MessageSignature, MessageType, messages as Messages, MoneroAccountPublicAddress, MoneroAddress, MoneroExportedKeyImage, MoneroGetAddress, MoneroGetTxKeyAck, MoneroGetTxKeyRequest, MoneroGetWatchKey, MoneroKeyImageExportInitAck, MoneroKeyImageExportInitRequest, MoneroKeyImageSyncFinalAck, MoneroKeyImageSyncFinalRequest, MoneroKeyImageSyncStepAck, MoneroKeyImageSyncStepRequest, MoneroLiveRefreshFinalAck, MoneroLiveRefreshFinalRequest, MoneroLiveRefreshStartAck, MoneroLiveRefreshStartRequest, MoneroLiveRefreshStepAck, MoneroLiveRefreshStepRequest, MoneroMultisigKLRki, MoneroOutputEntry, MoneroRctKeyPublic, MoneroRingCtSig, MoneroSubAddressIndicesList, MoneroTransactionAllInputsSetAck, MoneroTransactionAllInputsSetRequest, MoneroTransactionAllOutSetAck, MoneroTransactionAllOutSetRequest, MoneroTransactionData, MoneroTransactionDestinationEntry, MoneroTransactionFinalAck, MoneroTransactionFinalRequest, MoneroTransactionInitAck, MoneroTransactionInitRequest, MoneroTransactionInputViniAck, MoneroTransactionInputViniRequest, MoneroTransactionInputsPermutationAck, MoneroTransactionInputsPermutationRequest, MoneroTransactionRsigData, MoneroTransactionSetInputAck, MoneroTransactionSetInputRequest, MoneroTransactionSetOutputAck, MoneroTransactionSetOutputRequest, MoneroTransactionSignInputAck, MoneroTransactionSignInputRequest, MoneroTransactionSourceEntry, MoneroTransferDetails, MoneroWatchKey, MultisigRedeemScriptType, NEMAddress, NEMAggregateModification, NEMCosignatoryModification, NEMDecryptMessage, NEMDecryptedMessage, NEMGetAddress, NEMImportanceTransfer, NEMImportanceTransferMode, NEMModificationType, NEMMosaic, NEMMosaicCreation, NEMMosaicDefinition, NEMMosaicLevy, NEMMosaicSupplyChange, NEMProvisionNamespace, NEMSignTx, NEMSignedTx, NEMSupplyChangeType, NEMTransactionCommon, NEMTransfer, NFTWriteData, NFTWriteInfo, NearAddress, NearGetAddress, NearSignTx, NearSignedTx, NexaAddress, NexaGetAddress, NexaSignTx, NexaSignedTx, NexaTxInputAck, NexaTxInputRequest, NextU2FCounter, OneKeyDeviceInfo, OneKeyDeviceInfoWithSession, OneKeyMobileDeviceInfo, OutputScriptType, OwnershipId, OwnershipProof, PassphraseAck, PassphraseRequest, Path, PinMatrixAck, PinMatrixRequest, PinMatrixRequestType, Ping, PolkadotAddress, PolkadotGetAddress, PolkadotSignTx, PolkadotSignedTx, PreauthorizedRequest, PrevInput, PrevOutput, PrevTx, PublicKey, PublicKeyMultiple, ReadSEPublicCert, ReadSEPublicKey, Reboot, RebootToBoardloader, RebootToBootloader, RebootType, RecoveryDevice, RecoveryDeviceType, RequestType, ResetDevice, ResourceAck, ResourceRequest, ResourceType, ResourceUpdate, ResourceUpload, RippleAddress, RippleGetAddress, RipplePayment, RippleSignTx, RippleSignedTx, SEMessageSignature, SEPublicCert, SEPublicKey, SESignMessage, SafetyCheckLevel, SdProtect, SdProtectOperationType, SeedRequestType, SelfTest, SetU2FCounter, SignIdentity, SignMessage, SignTx, SignedIdentity, SolanaAddress, SolanaGetAddress, SolanaSignTx, SolanaSignedTx, SpiFlashData, SpiFlashRead, SpiFlashWrite, StarcoinAddress, StarcoinGetAddress, StarcoinGetPublicKey, StarcoinMessageSignature, StarcoinPublicKey, StarcoinSignMessage, StarcoinSignTx, StarcoinSignedTx, StarcoinVerifyMessage, StellarAccountMergeOp, StellarAddress, StellarAllowTrustOp, StellarAsset, StellarAssetType, StellarBumpSequenceOp, StellarChangeTrustOp, StellarCreateAccountOp, StellarCreatePassiveSellOfferOp, StellarGetAddress, StellarManageBuyOfferOp, StellarManageDataOp, StellarManageSellOfferOp, StellarMemoType, StellarPathPaymentStrictReceiveOp, StellarPathPaymentStrictSendOp, StellarPaymentOp, StellarSetOptionsOp, StellarSignTx, StellarSignedTx, StellarSignerType, StellarTxOpRequest, Success, SuiAddress, SuiGetAddress, SuiSignTx, SuiSignedTx, TezosAddress, TezosBallotOp, TezosBallotType, TezosContractID, TezosContractType, TezosDelegationOp, TezosGetAddress, TezosGetPublicKey, TezosManagerTransfer, TezosOriginationOp, TezosParametersManager, TezosProposalOp, TezosPublicKey, TezosRevealOp, TezosSignTx, TezosSignedTx, TezosTransactionOp, Transport, TronAddress, TronContract, TronDelegateResourceContract, TronFreezeBalanceContract, TronFreezeBalanceV2Contract, TronGetAddress, TronMessageSignature, TronResourceCode, TronSignMessage, TronSignTx, TronSignedTx, TronTransferContract, TronTriggerSmartContract, TronUnDelegateResourceContract, TronUnfreezeBalanceContract, TronUnfreezeBalanceV2Contract, TronWithdrawBalanceContract, TronWithdrawExpireUnfreezeContract, TxAck, TxAckInput, TxAckInputWrapper, TxAckOutput, TxAckOutputWrapper, TxAckPrevExtraData, TxAckPrevExtraDataWrapper, TxAckPrevInput, TxAckPrevInputWrapper, TxAckPrevMeta, TxAckPrevOutput, TxAckPrevOutputWrapper, TxAckResponse, TxInput, TxInputType, TxOutput, TxOutputBinType, TxOutputType, TxRequest, TxRequestDetailsType, TxRequestSerializedType, TypedCall, UintType, VerifyMessage, WL_OperationType, WipeDevice, WordAck, WordRequest, WordRequestType, WriteSEPublicCert, ZoomRequest, _default as default, facotry };
4316
+ export { AcquireInput, Address, AlgorandAddress, AlgorandGetAddress, AlgorandSignTx, AlgorandSignedTx, AmountUnit, ApplyFlags, ApplySettings, AptosAddress, AptosGetAddress, AptosMessagePayload, AptosMessageSignature, AptosSignMessage, AptosSignTx, AptosSignedTx, AuthorizeCoinJoin, BIP32Address, BUFFER_SIZE, BackupDevice, BackupType, BatchGetPublickeys, BinanceAddress, BinanceCancelMsg, BinanceCoin, BinanceGetAddress, BinanceGetPublicKey, BinanceInputOutput, BinanceOrderMsg, BinanceOrderSide, BinanceOrderType, BinancePublicKey, BinanceSignTx, BinanceSignedTx, BinanceTimeInForce, BinanceTransferMsg, BinanceTxRequest, BixinBackupAck, BixinBackupDevice, BixinBackupDeviceAck, BixinBackupRequest, BixinLoadDevice, BixinMessageSE, BixinOutMessageSE, BixinPinInputOnDevice, BixinRestoreAck, BixinRestoreRequest, BixinSeedOperate, BixinVerifyDeviceAck, BixinVerifyDeviceRequest, BixinWhiteListAck, BixinWhiteListRequest, ButtonAck, ButtonRequest, ButtonRequestType, COMMON_HEADER_SIZE, Cancel, CancelAuthorization, Capability, CardanoAddress, CardanoAddressParametersType, CardanoAddressType, CardanoAssetGroup, CardanoBlockchainPointerType, CardanoCertificateType, CardanoDerivationType, CardanoGetAddress, CardanoGetNativeScriptHash, CardanoGetPublicKey, CardanoGovernanceRegistrationDelegation, CardanoGovernanceRegistrationFormat, CardanoGovernanceRegistrationParametersType, CardanoMessageSignature, CardanoNativeScript, CardanoNativeScriptHash, CardanoNativeScriptHashDisplayFormat, CardanoNativeScriptType, CardanoPoolMetadataType, CardanoPoolOwner, CardanoPoolParametersType, CardanoPoolRelayParameters, CardanoPoolRelayType, CardanoPublicKey, CardanoSignMessage, CardanoSignTxFinished, CardanoSignTxInit, CardanoToken, CardanoTxAuxiliaryData, CardanoTxAuxiliaryDataSupplement, CardanoTxAuxiliaryDataSupplementType, CardanoTxBodyHash, CardanoTxCertificate, CardanoTxCollateralInput, CardanoTxHostAck, CardanoTxInlineDatumChunk, CardanoTxInput, CardanoTxItemAck, CardanoTxMint, CardanoTxOutput, CardanoTxOutputSerializationFormat, CardanoTxReferenceInput, CardanoTxReferenceScriptChunk, CardanoTxRequiredSigner, CardanoTxSigningMode, CardanoTxWithdrawal, CardanoTxWitnessRequest, CardanoTxWitnessResponse, CardanoTxWitnessType, ChangeOutputScriptType, ChangePin, ChangeWipeCode, CipherKeyValue, CipheredKeyValue, CommandFlags, ConfluxAddress, ConfluxGetAddress, ConfluxMessageSignature, ConfluxSignMessage, ConfluxSignMessageCIP23, ConfluxSignTx, ConfluxTxAck, ConfluxTxRequest, CosmosAddress, CosmosGetAddress, CosmosSignTx, CosmosSignedTx, DecredStakingSpendType, Deprecated_PassphraseStateAck, Deprecated_PassphraseStateRequest, DeviceBackToBoot, DeviceEraseSector, DeviceInfo, DeviceInfoSettings, DoPreauthorized, ECDHSessionKey, EcdsaPublicKeys, EmmcDir, EmmcDirList, EmmcDirMake, EmmcDirRemove, EmmcFile, EmmcFileDelete, EmmcFileRead, EmmcFileWrite, EmmcFixPermission, EmmcPath, EmmcPathInfo, EndSession, Entropy, EntropyAck, EntropyRequest, Enum_BackupType, Enum_ButtonRequestType, Enum_Capability, Enum_InputScriptType, Enum_OutputScriptType, Enum_PinMatrixRequestType, Enum_RequestType, Enum_SafetyCheckLevel, Enum_WordRequestType, EosActionBuyRam, EosActionBuyRamBytes, EosActionCommon, EosActionDelegate, EosActionDeleteAuth, EosActionLinkAuth, EosActionNewAccount, EosActionRefund, EosActionSellRam, EosActionTransfer, EosActionUndelegate, EosActionUnknown, EosActionUnlinkAuth, EosActionUpdateAuth, EosActionVoteProducer, EosAsset, EosAuthorization, EosAuthorizationAccount, EosAuthorizationKey, EosAuthorizationWait, EosGetPublicKey, EosPermissionLevel, EosPublicKey, EosSignTx, EosSignedTx, EosTxActionAck, EosTxActionRequest, EosTxHeader, EthereumAccessList, EthereumAccessListOneKey, EthereumAddress, EthereumAddressOneKey, EthereumDataType, EthereumDataTypeOneKey, EthereumDefinitionType, EthereumDefinitions, EthereumFieldType, EthereumFieldTypeOneKey, EthereumGetAddress, EthereumGetAddressOneKey, EthereumGetPublicKey, EthereumGetPublicKeyOneKey, EthereumMessageSignature, EthereumMessageSignatureOneKey, EthereumNetworkInfo, EthereumPublicKey, EthereumPublicKeyOneKey, EthereumSignMessage, EthereumSignMessageEIP712, EthereumSignMessageOneKey, EthereumSignTx, EthereumSignTxEIP1559, EthereumSignTxEIP1559OneKey, EthereumSignTxOneKey, EthereumSignTypedData, EthereumSignTypedDataOneKey, EthereumSignTypedHash, EthereumSignTypedHashOneKey, EthereumStructMember, EthereumStructMemberOneKey, EthereumTokenInfo, EthereumTxAck, EthereumTxAckOneKey, EthereumTxRequest, EthereumTxRequestOneKey, EthereumTypedDataSignature, EthereumTypedDataSignatureOneKey, EthereumTypedDataStructAck, EthereumTypedDataStructAckOneKey, EthereumTypedDataStructRequest, EthereumTypedDataStructRequestOneKey, EthereumTypedDataValueAck, EthereumTypedDataValueAckOneKey, EthereumTypedDataValueRequest, EthereumTypedDataValueRequestOneKey, EthereumVerifyMessage, EthereumVerifyMessageOneKey, ExportType, Failure, FailureType, Features, FileInfo, FileInfoList, FilecoinAddress, FilecoinGetAddress, FilecoinSignTx, FilecoinSignedTx, FirmwareErase, FirmwareErase_ex, FirmwareRequest, FirmwareUpdateEmmc, FirmwareUpload, GetAddress, GetDeviceInfo, GetECDHSessionKey, GetEntropy, GetFeatures, GetNextU2FCounter, GetOwnershipId, GetOwnershipProof, GetPublicKey, GetPublicKeyMultiple, HDNodePathType, HDNodeType, HEADER_SIZE, IdentityType, Initialize, InputScriptType, InternalInputScriptType, KaspaAddress, KaspaGetAddress, KaspaSignTx, KaspaSignedTx, KaspaTxInputAck, KaspaTxInputRequest, ListResDir, LockDevice, MESSAGE_HEADER_BYTE, MESSAGE_TOP_CHAR, MessageFromOneKey, MessageKey, MessageResponse, MessageSignature, MessageType, messages as Messages, MoneroAccountPublicAddress, MoneroAddress, MoneroExportedKeyImage, MoneroGetAddress, MoneroGetTxKeyAck, MoneroGetTxKeyRequest, MoneroGetWatchKey, MoneroKeyImageExportInitAck, MoneroKeyImageExportInitRequest, MoneroKeyImageSyncFinalAck, MoneroKeyImageSyncFinalRequest, MoneroKeyImageSyncStepAck, MoneroKeyImageSyncStepRequest, MoneroLiveRefreshFinalAck, MoneroLiveRefreshFinalRequest, MoneroLiveRefreshStartAck, MoneroLiveRefreshStartRequest, MoneroLiveRefreshStepAck, MoneroLiveRefreshStepRequest, MoneroMultisigKLRki, MoneroOutputEntry, MoneroRctKeyPublic, MoneroRingCtSig, MoneroSubAddressIndicesList, MoneroTransactionAllInputsSetAck, MoneroTransactionAllInputsSetRequest, MoneroTransactionAllOutSetAck, MoneroTransactionAllOutSetRequest, MoneroTransactionData, MoneroTransactionDestinationEntry, MoneroTransactionFinalAck, MoneroTransactionFinalRequest, MoneroTransactionInitAck, MoneroTransactionInitRequest, MoneroTransactionInputViniAck, MoneroTransactionInputViniRequest, MoneroTransactionInputsPermutationAck, MoneroTransactionInputsPermutationRequest, MoneroTransactionRsigData, MoneroTransactionSetInputAck, MoneroTransactionSetInputRequest, MoneroTransactionSetOutputAck, MoneroTransactionSetOutputRequest, MoneroTransactionSignInputAck, MoneroTransactionSignInputRequest, MoneroTransactionSourceEntry, MoneroTransferDetails, MoneroWatchKey, MultisigRedeemScriptType, NEMAddress, NEMAggregateModification, NEMCosignatoryModification, NEMDecryptMessage, NEMDecryptedMessage, NEMGetAddress, NEMImportanceTransfer, NEMImportanceTransferMode, NEMModificationType, NEMMosaic, NEMMosaicCreation, NEMMosaicDefinition, NEMMosaicLevy, NEMMosaicSupplyChange, NEMProvisionNamespace, NEMSignTx, NEMSignedTx, NEMSupplyChangeType, NEMTransactionCommon, NEMTransfer, NFTWriteData, NFTWriteInfo, NearAddress, NearGetAddress, NearSignTx, NearSignedTx, NexaAddress, NexaGetAddress, NexaSignTx, NexaSignedTx, NexaTxInputAck, NexaTxInputRequest, NextU2FCounter, OneKeyDeviceInfo, OneKeyDeviceInfoWithSession, OneKeyMobileDeviceInfo, OutputScriptType, OwnershipId, OwnershipProof, PassphraseAck, PassphraseRequest, Path, PinMatrixAck, PinMatrixRequest, PinMatrixRequestType, Ping, PolkadotAddress, PolkadotGetAddress, PolkadotSignTx, PolkadotSignedTx, PreauthorizedRequest, PrevInput, PrevOutput, PrevTx, PublicKey, PublicKeyMultiple, ReadSEPublicCert, ReadSEPublicKey, Reboot, RebootToBoardloader, RebootToBootloader, RebootType, RecoveryDevice, RecoveryDeviceType, RequestType, ResetDevice, ResourceAck, ResourceRequest, ResourceType, ResourceUpdate, ResourceUpload, RippleAddress, RippleGetAddress, RipplePayment, RippleSignTx, RippleSignedTx, SEMessageSignature, SEPublicCert, SEPublicKey, SESignMessage, SafetyCheckLevel, SdProtect, SdProtectOperationType, SeedRequestType, SelfTest, SetU2FCounter, SignIdentity, SignMessage, SignTx, SignedIdentity, SolanaAddress, SolanaGetAddress, SolanaSignTx, SolanaSignedTx, SpiFlashData, SpiFlashRead, SpiFlashWrite, StarcoinAddress, StarcoinGetAddress, StarcoinGetPublicKey, StarcoinMessageSignature, StarcoinPublicKey, StarcoinSignMessage, StarcoinSignTx, StarcoinSignedTx, StarcoinVerifyMessage, StellarAccountMergeOp, StellarAddress, StellarAllowTrustOp, StellarAsset, StellarAssetType, StellarBumpSequenceOp, StellarChangeTrustOp, StellarCreateAccountOp, StellarCreatePassiveSellOfferOp, StellarGetAddress, StellarManageBuyOfferOp, StellarManageDataOp, StellarManageSellOfferOp, StellarMemoType, StellarPathPaymentStrictReceiveOp, StellarPathPaymentStrictSendOp, StellarPaymentOp, StellarSetOptionsOp, StellarSignTx, StellarSignedTx, StellarSignerType, StellarTxOpRequest, Success, SuiAddress, SuiGetAddress, SuiSignTx, SuiSignedTx, TezosAddress, TezosBallotOp, TezosBallotType, TezosContractID, TezosContractType, TezosDelegationOp, TezosGetAddress, TezosGetPublicKey, TezosManagerTransfer, TezosOriginationOp, TezosParametersManager, TezosProposalOp, TezosPublicKey, TezosRevealOp, TezosSignTx, TezosSignedTx, TezosTransactionOp, Transport, TronAddress, TronContract, TronDelegateResourceContract, TronFreezeBalanceContract, TronFreezeBalanceV2Contract, TronGetAddress, TronMessageSignature, TronResourceCode, TronSignMessage, TronSignTx, TronSignedTx, TronTransferContract, TronTriggerSmartContract, TronUnDelegateResourceContract, TronUnfreezeBalanceContract, TronUnfreezeBalanceV2Contract, TronWithdrawBalanceContract, TronWithdrawExpireUnfreezeContract, TxAck, TxAckInput, TxAckInputWrapper, TxAckOutput, TxAckOutputWrapper, TxAckPrevExtraData, TxAckPrevExtraDataWrapper, TxAckPrevInput, TxAckPrevInputWrapper, TxAckPrevMeta, TxAckPrevOutput, TxAckPrevOutputWrapper, TxAckResponse, TxInput, TxInputType, TxOutput, TxOutputBinType, TxOutputType, TxRequest, TxRequestDetailsType, TxRequestSerializedType, TypedCall, UintType, VerifyMessage, WL_OperationType, WipeDevice, WordAck, WordRequest, WordRequestType, WriteSEPublicCert, ZoomRequest, _default as default, facotry };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,QAAQ,MAAM,kBAAkB,CAAC;AAE7C,OAAO,EACL,QAAQ,EAGR,UAAU,EACV,cAAc,EACd,cAAc,EACf,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,KAAK,MAAM,0BAA0B,CAAC;AAKlD,YAAY,EACV,SAAS,EACT,YAAY,EACZ,gBAAgB,EAChB,sBAAsB,EACtB,2BAA2B,EAC3B,iBAAiB,GAClB,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,cAAc,kBAAkB,CAAC;AAEjC,cAAc,aAAa,CAAC;;;;;;;;;;AAE5B,wBAQE"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,OAAO,KAAK,QAAQ,MAAM,kBAAkB,CAAC;AAE7C,OAAO,EAGL,QAAQ,EACR,cAAc,EACd,cAAc,EACd,UAAU,EACX,MAAM,iBAAiB,CAAC;AACzB,OAAO,KAAK,KAAK,MAAM,0BAA0B,CAAC;AAKlD,YAAY,EACV,SAAS,EACT,YAAY,EACZ,gBAAgB,EAChB,sBAAsB,EACtB,2BAA2B,EAC3B,iBAAiB,GAClB,MAAM,SAAS,CAAC;AAEjB,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACnC,cAAc,kBAAkB,CAAC;AAEjC,cAAc,aAAa,CAAC;;;;;;;;;;AAE5B,wBAQE"}
package/dist/index.js CHANGED
@@ -611,6 +611,22 @@ exports.Enum_PinMatrixRequestType = void 0;
611
611
  Enum_PinMatrixRequestType[Enum_PinMatrixRequestType["PinMatrixRequestType_BackupFirst"] = 6] = "PinMatrixRequestType_BackupFirst";
612
612
  Enum_PinMatrixRequestType[Enum_PinMatrixRequestType["PinMatrixRequestType_BackupSecond"] = 7] = "PinMatrixRequestType_BackupSecond";
613
613
  })(exports.Enum_PinMatrixRequestType || (exports.Enum_PinMatrixRequestType = {}));
614
+ exports.EthereumDefinitionType = void 0;
615
+ (function (EthereumDefinitionType) {
616
+ EthereumDefinitionType[EthereumDefinitionType["NETWORK"] = 0] = "NETWORK";
617
+ EthereumDefinitionType[EthereumDefinitionType["TOKEN"] = 1] = "TOKEN";
618
+ })(exports.EthereumDefinitionType || (exports.EthereumDefinitionType = {}));
619
+ exports.EthereumDataTypeOneKey = void 0;
620
+ (function (EthereumDataTypeOneKey) {
621
+ EthereumDataTypeOneKey[EthereumDataTypeOneKey["UINT"] = 1] = "UINT";
622
+ EthereumDataTypeOneKey[EthereumDataTypeOneKey["INT"] = 2] = "INT";
623
+ EthereumDataTypeOneKey[EthereumDataTypeOneKey["BYTES"] = 3] = "BYTES";
624
+ EthereumDataTypeOneKey[EthereumDataTypeOneKey["STRING"] = 4] = "STRING";
625
+ EthereumDataTypeOneKey[EthereumDataTypeOneKey["BOOL"] = 5] = "BOOL";
626
+ EthereumDataTypeOneKey[EthereumDataTypeOneKey["ADDRESS"] = 6] = "ADDRESS";
627
+ EthereumDataTypeOneKey[EthereumDataTypeOneKey["ARRAY"] = 7] = "ARRAY";
628
+ EthereumDataTypeOneKey[EthereumDataTypeOneKey["STRUCT"] = 8] = "STRUCT";
629
+ })(exports.EthereumDataTypeOneKey || (exports.EthereumDataTypeOneKey = {}));
614
630
  exports.EthereumDataType = void 0;
615
631
  (function (EthereumDataType) {
616
632
  EthereumDataType[EthereumDataType["UINT"] = 1] = "UINT";
@@ -781,6 +797,8 @@ var messages = /*#__PURE__*/Object.freeze({
781
797
  get FailureType () { return exports.FailureType; },
782
798
  get Enum_ButtonRequestType () { return exports.Enum_ButtonRequestType; },
783
799
  get Enum_PinMatrixRequestType () { return exports.Enum_PinMatrixRequestType; },
800
+ get EthereumDefinitionType () { return exports.EthereumDefinitionType; },
801
+ get EthereumDataTypeOneKey () { return exports.EthereumDataTypeOneKey; },
784
802
  get EthereumDataType () { return exports.EthereumDataType; },
785
803
  get Enum_BackupType () { return exports.Enum_BackupType; },
786
804
  get Enum_SafetyCheckLevel () { return exports.Enum_SafetyCheckLevel; },