@onekeyfe/hd-transport 0.2.16 → 0.2.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +148 -114
- package/dist/index.js +14 -1
- package/dist/types/messages.d.ts +107 -85
- package/dist/types/messages.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/types/messages.ts +140 -101
package/dist/index.d.ts
CHANGED
|
@@ -557,6 +557,10 @@ declare enum CardanoNativeScriptHashDisplayFormat {
|
|
|
557
557
|
BECH32 = 1,
|
|
558
558
|
POLICY_ID = 2
|
|
559
559
|
}
|
|
560
|
+
declare enum CardanoTxOutputSerializationFormat {
|
|
561
|
+
ARRAY_LEGACY = 0,
|
|
562
|
+
MAP_BABBAGE = 1
|
|
563
|
+
}
|
|
560
564
|
declare enum CardanoCertificateType {
|
|
561
565
|
STAKE_REGISTRATION = 0,
|
|
562
566
|
STAKE_DEREGISTRATION = 1,
|
|
@@ -570,12 +574,17 @@ declare enum CardanoPoolRelayType {
|
|
|
570
574
|
}
|
|
571
575
|
declare enum CardanoTxAuxiliaryDataSupplementType {
|
|
572
576
|
NONE = 0,
|
|
573
|
-
|
|
577
|
+
GOVERNANCE_REGISTRATION_SIGNATURE = 1
|
|
578
|
+
}
|
|
579
|
+
declare enum CardanoGovernanceRegistrationFormat {
|
|
580
|
+
CIP15 = 0,
|
|
581
|
+
CIP36 = 1
|
|
574
582
|
}
|
|
575
583
|
declare enum CardanoTxSigningMode {
|
|
576
584
|
ORDINARY_TRANSACTION = 0,
|
|
577
585
|
POOL_REGISTRATION_AS_OWNER = 1,
|
|
578
|
-
MULTISIG_TRANSACTION = 2
|
|
586
|
+
MULTISIG_TRANSACTION = 2,
|
|
587
|
+
PLUTUS_TRANSACTION = 3
|
|
579
588
|
}
|
|
580
589
|
declare enum CardanoTxWitnessType {
|
|
581
590
|
BYRON_WITNESS = 0,
|
|
@@ -651,7 +660,7 @@ declare type CardanoSignTxInit = {
|
|
|
651
660
|
collateral_inputs_count: number;
|
|
652
661
|
required_signers_count: number;
|
|
653
662
|
has_collateral_return?: boolean;
|
|
654
|
-
total_collateral?:
|
|
663
|
+
total_collateral?: number;
|
|
655
664
|
reference_inputs_count?: number;
|
|
656
665
|
};
|
|
657
666
|
declare type CardanoTxInput = {
|
|
@@ -663,6 +672,10 @@ declare type CardanoTxOutput = {
|
|
|
663
672
|
address_parameters?: CardanoAddressParametersType;
|
|
664
673
|
amount: UintType;
|
|
665
674
|
asset_groups_count: number;
|
|
675
|
+
datum_hash?: string;
|
|
676
|
+
format?: CardanoTxOutputSerializationFormat;
|
|
677
|
+
inline_datum_size?: number;
|
|
678
|
+
reference_script_size?: number;
|
|
666
679
|
};
|
|
667
680
|
declare type CardanoAssetGroup = {
|
|
668
681
|
policy_id: string;
|
|
@@ -673,6 +686,12 @@ declare type CardanoToken = {
|
|
|
673
686
|
amount?: UintType;
|
|
674
687
|
mint_amount?: UintType;
|
|
675
688
|
};
|
|
689
|
+
declare type CardanoTxInlineDatumChunk = {
|
|
690
|
+
data: string;
|
|
691
|
+
};
|
|
692
|
+
declare type CardanoTxReferenceScriptChunk = {
|
|
693
|
+
data: string;
|
|
694
|
+
};
|
|
676
695
|
declare type CardanoPoolOwner = {
|
|
677
696
|
staking_key_path?: number[];
|
|
678
697
|
staking_key_hash?: string;
|
|
@@ -696,8 +715,6 @@ declare type CardanoPoolParametersType = {
|
|
|
696
715
|
margin_numerator: UintType;
|
|
697
716
|
margin_denominator: UintType;
|
|
698
717
|
reward_account: string;
|
|
699
|
-
owners: CardanoPoolOwner[];
|
|
700
|
-
relays: CardanoPoolRelayParameters[];
|
|
701
718
|
metadata?: CardanoPoolMetadataType;
|
|
702
719
|
owners_count: number;
|
|
703
720
|
relays_count: number;
|
|
@@ -708,30 +725,51 @@ declare type CardanoTxCertificate = {
|
|
|
708
725
|
pool?: string;
|
|
709
726
|
pool_parameters?: CardanoPoolParametersType;
|
|
710
727
|
script_hash?: string;
|
|
728
|
+
key_hash?: string;
|
|
711
729
|
};
|
|
712
730
|
declare type CardanoTxWithdrawal = {
|
|
713
731
|
path?: number[];
|
|
714
732
|
amount: UintType;
|
|
715
733
|
script_hash?: string;
|
|
734
|
+
key_hash?: string;
|
|
716
735
|
};
|
|
717
|
-
declare type
|
|
736
|
+
declare type CardanoGovernanceRegistrationDelegation = {
|
|
718
737
|
voting_public_key: string;
|
|
738
|
+
weight: number;
|
|
739
|
+
};
|
|
740
|
+
declare type CardanoGovernanceRegistrationParametersType = {
|
|
741
|
+
voting_public_key?: string;
|
|
719
742
|
staking_path: number[];
|
|
720
743
|
reward_address_parameters: CardanoAddressParametersType;
|
|
721
|
-
nonce:
|
|
744
|
+
nonce: number;
|
|
745
|
+
format?: CardanoGovernanceRegistrationFormat;
|
|
746
|
+
delegations: CardanoGovernanceRegistrationDelegation[];
|
|
747
|
+
voting_purpose?: number;
|
|
722
748
|
};
|
|
723
749
|
declare type CardanoTxAuxiliaryData = {
|
|
724
|
-
|
|
750
|
+
governance_registration_parameters?: CardanoGovernanceRegistrationParametersType;
|
|
725
751
|
hash?: string;
|
|
726
752
|
};
|
|
727
753
|
declare type CardanoTxMint = {
|
|
728
754
|
asset_groups_count: number;
|
|
729
755
|
};
|
|
756
|
+
declare type CardanoTxCollateralInput = {
|
|
757
|
+
prev_hash: string;
|
|
758
|
+
prev_index: number;
|
|
759
|
+
};
|
|
760
|
+
declare type CardanoTxRequiredSigner = {
|
|
761
|
+
key_hash?: string;
|
|
762
|
+
key_path?: number[];
|
|
763
|
+
};
|
|
764
|
+
declare type CardanoTxReferenceInput = {
|
|
765
|
+
prev_hash: string;
|
|
766
|
+
prev_index: number;
|
|
767
|
+
};
|
|
730
768
|
declare type CardanoTxItemAck = {};
|
|
731
769
|
declare type CardanoTxAuxiliaryDataSupplement = {
|
|
732
770
|
type: CardanoTxAuxiliaryDataSupplementType;
|
|
733
771
|
auxiliary_data_hash?: string;
|
|
734
|
-
|
|
772
|
+
governance_signature?: string;
|
|
735
773
|
};
|
|
736
774
|
declare type CardanoTxWitnessRequest = {
|
|
737
775
|
path: number[];
|
|
@@ -747,69 +785,15 @@ declare type CardanoTxBodyHash = {
|
|
|
747
785
|
tx_hash: string;
|
|
748
786
|
};
|
|
749
787
|
declare type CardanoSignTxFinished = {};
|
|
750
|
-
declare type
|
|
751
|
-
address_n
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
};
|
|
755
|
-
declare type CardanoTokenType = {
|
|
756
|
-
asset_name_bytes: string;
|
|
757
|
-
amount: UintType;
|
|
758
|
-
};
|
|
759
|
-
declare type CardanoAssetGroupType = {
|
|
760
|
-
policy_id: string;
|
|
761
|
-
tokens: CardanoTokenType[];
|
|
762
|
-
};
|
|
763
|
-
declare type CardanoTxOutputType = {
|
|
764
|
-
address?: string;
|
|
765
|
-
amount: UintType;
|
|
766
|
-
address_parameters?: CardanoAddressParametersType;
|
|
767
|
-
token_bundle: CardanoAssetGroupType[];
|
|
768
|
-
};
|
|
769
|
-
declare type CardanoPoolOwnerType = {
|
|
770
|
-
staking_key_path?: number[];
|
|
771
|
-
staking_key_hash?: string;
|
|
772
|
-
};
|
|
773
|
-
declare type CardanoPoolRelayParametersType = {
|
|
774
|
-
type: CardanoPoolRelayType;
|
|
775
|
-
ipv4_address?: string;
|
|
776
|
-
ipv6_address?: string;
|
|
777
|
-
host_name?: string;
|
|
778
|
-
port?: number;
|
|
779
|
-
};
|
|
780
|
-
declare type CardanoTxCertificateType = {
|
|
781
|
-
type: CardanoCertificateType;
|
|
782
|
-
path?: number[];
|
|
783
|
-
pool?: string;
|
|
784
|
-
pool_parameters?: CardanoPoolParametersType;
|
|
785
|
-
};
|
|
786
|
-
declare type CardanoTxWithdrawalType = {
|
|
787
|
-
path: number[];
|
|
788
|
-
amount: UintType;
|
|
789
|
-
};
|
|
790
|
-
declare type CardanoTxAuxiliaryDataType = {
|
|
791
|
-
blob?: string;
|
|
792
|
-
catalyst_registration_parameters?: CardanoCatalystRegistrationParametersType;
|
|
793
|
-
};
|
|
794
|
-
declare type CardanoSignTx = {
|
|
795
|
-
inputs: CardanoTxInputType[];
|
|
796
|
-
outputs: CardanoTxOutputType[];
|
|
797
|
-
protocol_magic: number;
|
|
798
|
-
fee: UintType;
|
|
799
|
-
ttl?: UintType;
|
|
788
|
+
declare type CardanoSignMessage = {
|
|
789
|
+
address_n: number[];
|
|
790
|
+
message: string;
|
|
791
|
+
derivation_type: CardanoDerivationType;
|
|
800
792
|
network_id: number;
|
|
801
|
-
certificates: CardanoTxCertificateType[];
|
|
802
|
-
withdrawals: CardanoTxWithdrawalType[];
|
|
803
|
-
validity_interval_start?: UintType;
|
|
804
|
-
auxiliary_data?: CardanoTxAuxiliaryDataType;
|
|
805
793
|
};
|
|
806
|
-
declare type
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
declare type CardanoSignedTxChunkAck = {};
|
|
810
|
-
declare type CardanoSignedTx = {
|
|
811
|
-
tx_hash: string;
|
|
812
|
-
serialized_tx?: string;
|
|
794
|
+
declare type CardanoMessageSignature = {
|
|
795
|
+
signature: string;
|
|
796
|
+
key: string;
|
|
813
797
|
};
|
|
814
798
|
declare type Success = {
|
|
815
799
|
message: string;
|
|
@@ -1155,6 +1139,7 @@ declare type EthereumSignTypedData = {
|
|
|
1155
1139
|
address_n: number[];
|
|
1156
1140
|
primary_type: string;
|
|
1157
1141
|
metamask_v4_compat?: boolean;
|
|
1142
|
+
chain_id?: number;
|
|
1158
1143
|
};
|
|
1159
1144
|
declare type EthereumTypedDataStructRequest = {
|
|
1160
1145
|
name: string;
|
|
@@ -1191,6 +1176,7 @@ declare type EthereumTypedDataValueAck = {
|
|
|
1191
1176
|
declare type EthereumGetPublicKey = {
|
|
1192
1177
|
address_n: number[];
|
|
1193
1178
|
show_display?: boolean;
|
|
1179
|
+
chain_id?: number;
|
|
1194
1180
|
};
|
|
1195
1181
|
declare type EthereumPublicKey = {
|
|
1196
1182
|
node: HDNodeType;
|
|
@@ -1199,6 +1185,7 @@ declare type EthereumPublicKey = {
|
|
|
1199
1185
|
declare type EthereumGetAddress = {
|
|
1200
1186
|
address_n: number[];
|
|
1201
1187
|
show_display?: boolean;
|
|
1188
|
+
chain_id?: number;
|
|
1202
1189
|
};
|
|
1203
1190
|
declare type EthereumAddress = {
|
|
1204
1191
|
_old_address?: string;
|
|
@@ -1245,6 +1232,7 @@ declare type EthereumTxAck = {
|
|
|
1245
1232
|
declare type EthereumSignMessage = {
|
|
1246
1233
|
address_n: number[];
|
|
1247
1234
|
message: string;
|
|
1235
|
+
chain_id?: number;
|
|
1248
1236
|
};
|
|
1249
1237
|
declare type EthereumMessageSignature = {
|
|
1250
1238
|
signature: string;
|
|
@@ -1254,6 +1242,7 @@ declare type EthereumVerifyMessage = {
|
|
|
1254
1242
|
signature: string;
|
|
1255
1243
|
message: string;
|
|
1256
1244
|
address: string;
|
|
1245
|
+
chain_id?: number;
|
|
1257
1246
|
};
|
|
1258
1247
|
declare type EthereumSignMessageEIP712 = {
|
|
1259
1248
|
address_n: number[];
|
|
@@ -1264,11 +1253,26 @@ declare type EthereumSignTypedHash = {
|
|
|
1264
1253
|
address_n: number[];
|
|
1265
1254
|
domain_separator_hash: string;
|
|
1266
1255
|
message_hash?: string;
|
|
1256
|
+
chain_id?: number;
|
|
1267
1257
|
};
|
|
1268
1258
|
declare type EthereumTypedDataSignature = {
|
|
1269
1259
|
signature: string;
|
|
1270
1260
|
address: string;
|
|
1271
1261
|
};
|
|
1262
|
+
declare type FilecoinGetAddress = {
|
|
1263
|
+
address_n: number[];
|
|
1264
|
+
show_display?: boolean;
|
|
1265
|
+
};
|
|
1266
|
+
declare type FilecoinAddress = {
|
|
1267
|
+
address?: string;
|
|
1268
|
+
};
|
|
1269
|
+
declare type FilecoinSignTx = {
|
|
1270
|
+
address_n: number[];
|
|
1271
|
+
raw_tx: string;
|
|
1272
|
+
};
|
|
1273
|
+
declare type FilecoinSignedTx = {
|
|
1274
|
+
signature: string;
|
|
1275
|
+
};
|
|
1272
1276
|
declare enum Enum_BackupType {
|
|
1273
1277
|
Bip39 = 0,
|
|
1274
1278
|
Slip39_Basic = 1,
|
|
@@ -1583,8 +1587,9 @@ declare type ResourceUpload = {
|
|
|
1583
1587
|
extension: string;
|
|
1584
1588
|
data_length: number;
|
|
1585
1589
|
res_type: ResourceType;
|
|
1586
|
-
zoom_data_length: number;
|
|
1587
1590
|
nft_meta_data?: string;
|
|
1591
|
+
zoom_data_length: number;
|
|
1592
|
+
file_name_no_ext?: string;
|
|
1588
1593
|
};
|
|
1589
1594
|
declare type ZoomRequest = {
|
|
1590
1595
|
offset?: number;
|
|
@@ -1759,6 +1764,20 @@ declare type NEMDecryptMessage = {
|
|
|
1759
1764
|
declare type NEMDecryptedMessage = {
|
|
1760
1765
|
payload: string;
|
|
1761
1766
|
};
|
|
1767
|
+
declare type PolkadotGetAddress = {
|
|
1768
|
+
address_n: number[];
|
|
1769
|
+
show_display?: boolean;
|
|
1770
|
+
};
|
|
1771
|
+
declare type PolkadotAddress = {
|
|
1772
|
+
address?: string;
|
|
1773
|
+
};
|
|
1774
|
+
declare type PolkadotSignTx = {
|
|
1775
|
+
address_n: number[];
|
|
1776
|
+
raw_tx: string;
|
|
1777
|
+
};
|
|
1778
|
+
declare type PolkadotSignedTx = {
|
|
1779
|
+
signature: string;
|
|
1780
|
+
};
|
|
1762
1781
|
declare type RippleGetAddress = {
|
|
1763
1782
|
address_n: number[];
|
|
1764
1783
|
show_display?: boolean;
|
|
@@ -2223,15 +2242,21 @@ declare type MessageType = {
|
|
|
2223
2242
|
CardanoTxOutput: CardanoTxOutput;
|
|
2224
2243
|
CardanoAssetGroup: CardanoAssetGroup;
|
|
2225
2244
|
CardanoToken: CardanoToken;
|
|
2245
|
+
CardanoTxInlineDatumChunk: CardanoTxInlineDatumChunk;
|
|
2246
|
+
CardanoTxReferenceScriptChunk: CardanoTxReferenceScriptChunk;
|
|
2226
2247
|
CardanoPoolOwner: CardanoPoolOwner;
|
|
2227
2248
|
CardanoPoolRelayParameters: CardanoPoolRelayParameters;
|
|
2228
2249
|
CardanoPoolMetadataType: CardanoPoolMetadataType;
|
|
2229
2250
|
CardanoPoolParametersType: CardanoPoolParametersType;
|
|
2230
2251
|
CardanoTxCertificate: CardanoTxCertificate;
|
|
2231
2252
|
CardanoTxWithdrawal: CardanoTxWithdrawal;
|
|
2232
|
-
|
|
2253
|
+
CardanoGovernanceRegistrationDelegation: CardanoGovernanceRegistrationDelegation;
|
|
2254
|
+
CardanoGovernanceRegistrationParametersType: CardanoGovernanceRegistrationParametersType;
|
|
2233
2255
|
CardanoTxAuxiliaryData: CardanoTxAuxiliaryData;
|
|
2234
2256
|
CardanoTxMint: CardanoTxMint;
|
|
2257
|
+
CardanoTxCollateralInput: CardanoTxCollateralInput;
|
|
2258
|
+
CardanoTxRequiredSigner: CardanoTxRequiredSigner;
|
|
2259
|
+
CardanoTxReferenceInput: CardanoTxReferenceInput;
|
|
2235
2260
|
CardanoTxItemAck: CardanoTxItemAck;
|
|
2236
2261
|
CardanoTxAuxiliaryDataSupplement: CardanoTxAuxiliaryDataSupplement;
|
|
2237
2262
|
CardanoTxWitnessRequest: CardanoTxWitnessRequest;
|
|
@@ -2239,19 +2264,8 @@ declare type MessageType = {
|
|
|
2239
2264
|
CardanoTxHostAck: CardanoTxHostAck;
|
|
2240
2265
|
CardanoTxBodyHash: CardanoTxBodyHash;
|
|
2241
2266
|
CardanoSignTxFinished: CardanoSignTxFinished;
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
CardanoAssetGroupType: CardanoAssetGroupType;
|
|
2245
|
-
CardanoTxOutputType: CardanoTxOutputType;
|
|
2246
|
-
CardanoPoolOwnerType: CardanoPoolOwnerType;
|
|
2247
|
-
CardanoPoolRelayParametersType: CardanoPoolRelayParametersType;
|
|
2248
|
-
CardanoTxCertificateType: CardanoTxCertificateType;
|
|
2249
|
-
CardanoTxWithdrawalType: CardanoTxWithdrawalType;
|
|
2250
|
-
CardanoTxAuxiliaryDataType: CardanoTxAuxiliaryDataType;
|
|
2251
|
-
CardanoSignTx: CardanoSignTx;
|
|
2252
|
-
CardanoSignedTxChunk: CardanoSignedTxChunk;
|
|
2253
|
-
CardanoSignedTxChunkAck: CardanoSignedTxChunkAck;
|
|
2254
|
-
CardanoSignedTx: CardanoSignedTx;
|
|
2267
|
+
CardanoSignMessage: CardanoSignMessage;
|
|
2268
|
+
CardanoMessageSignature: CardanoMessageSignature;
|
|
2255
2269
|
Success: Success;
|
|
2256
2270
|
Failure: Failure;
|
|
2257
2271
|
ButtonRequest: ButtonRequest;
|
|
@@ -2335,6 +2349,10 @@ declare type MessageType = {
|
|
|
2335
2349
|
EthereumSignMessageEIP712: EthereumSignMessageEIP712;
|
|
2336
2350
|
EthereumSignTypedHash: EthereumSignTypedHash;
|
|
2337
2351
|
EthereumTypedDataSignature: EthereumTypedDataSignature;
|
|
2352
|
+
FilecoinGetAddress: FilecoinGetAddress;
|
|
2353
|
+
FilecoinAddress: FilecoinAddress;
|
|
2354
|
+
FilecoinSignTx: FilecoinSignTx;
|
|
2355
|
+
FilecoinSignedTx: FilecoinSignedTx;
|
|
2338
2356
|
Initialize: Initialize;
|
|
2339
2357
|
GetFeatures: GetFeatures;
|
|
2340
2358
|
Features: Features;
|
|
@@ -2424,6 +2442,10 @@ declare type MessageType = {
|
|
|
2424
2442
|
NEMSignedTx: NEMSignedTx;
|
|
2425
2443
|
NEMDecryptMessage: NEMDecryptMessage;
|
|
2426
2444
|
NEMDecryptedMessage: NEMDecryptedMessage;
|
|
2445
|
+
PolkadotGetAddress: PolkadotGetAddress;
|
|
2446
|
+
PolkadotAddress: PolkadotAddress;
|
|
2447
|
+
PolkadotSignTx: PolkadotSignTx;
|
|
2448
|
+
PolkadotSignedTx: PolkadotSignedTx;
|
|
2427
2449
|
RippleGetAddress: RippleGetAddress;
|
|
2428
2450
|
RippleAddress: RippleAddress;
|
|
2429
2451
|
RipplePayment: RipplePayment;
|
|
@@ -2599,12 +2621,16 @@ type messages_CardanoNativeScriptType = CardanoNativeScriptType;
|
|
|
2599
2621
|
declare const messages_CardanoNativeScriptType: typeof CardanoNativeScriptType;
|
|
2600
2622
|
type messages_CardanoNativeScriptHashDisplayFormat = CardanoNativeScriptHashDisplayFormat;
|
|
2601
2623
|
declare const messages_CardanoNativeScriptHashDisplayFormat: typeof CardanoNativeScriptHashDisplayFormat;
|
|
2624
|
+
type messages_CardanoTxOutputSerializationFormat = CardanoTxOutputSerializationFormat;
|
|
2625
|
+
declare const messages_CardanoTxOutputSerializationFormat: typeof CardanoTxOutputSerializationFormat;
|
|
2602
2626
|
type messages_CardanoCertificateType = CardanoCertificateType;
|
|
2603
2627
|
declare const messages_CardanoCertificateType: typeof CardanoCertificateType;
|
|
2604
2628
|
type messages_CardanoPoolRelayType = CardanoPoolRelayType;
|
|
2605
2629
|
declare const messages_CardanoPoolRelayType: typeof CardanoPoolRelayType;
|
|
2606
2630
|
type messages_CardanoTxAuxiliaryDataSupplementType = CardanoTxAuxiliaryDataSupplementType;
|
|
2607
2631
|
declare const messages_CardanoTxAuxiliaryDataSupplementType: typeof CardanoTxAuxiliaryDataSupplementType;
|
|
2632
|
+
type messages_CardanoGovernanceRegistrationFormat = CardanoGovernanceRegistrationFormat;
|
|
2633
|
+
declare const messages_CardanoGovernanceRegistrationFormat: typeof CardanoGovernanceRegistrationFormat;
|
|
2608
2634
|
type messages_CardanoTxSigningMode = CardanoTxSigningMode;
|
|
2609
2635
|
declare const messages_CardanoTxSigningMode: typeof CardanoTxSigningMode;
|
|
2610
2636
|
type messages_CardanoTxWitnessType = CardanoTxWitnessType;
|
|
@@ -2623,15 +2649,21 @@ type messages_CardanoTxInput = CardanoTxInput;
|
|
|
2623
2649
|
type messages_CardanoTxOutput = CardanoTxOutput;
|
|
2624
2650
|
type messages_CardanoAssetGroup = CardanoAssetGroup;
|
|
2625
2651
|
type messages_CardanoToken = CardanoToken;
|
|
2652
|
+
type messages_CardanoTxInlineDatumChunk = CardanoTxInlineDatumChunk;
|
|
2653
|
+
type messages_CardanoTxReferenceScriptChunk = CardanoTxReferenceScriptChunk;
|
|
2626
2654
|
type messages_CardanoPoolOwner = CardanoPoolOwner;
|
|
2627
2655
|
type messages_CardanoPoolRelayParameters = CardanoPoolRelayParameters;
|
|
2628
2656
|
type messages_CardanoPoolMetadataType = CardanoPoolMetadataType;
|
|
2629
2657
|
type messages_CardanoPoolParametersType = CardanoPoolParametersType;
|
|
2630
2658
|
type messages_CardanoTxCertificate = CardanoTxCertificate;
|
|
2631
2659
|
type messages_CardanoTxWithdrawal = CardanoTxWithdrawal;
|
|
2632
|
-
type
|
|
2660
|
+
type messages_CardanoGovernanceRegistrationDelegation = CardanoGovernanceRegistrationDelegation;
|
|
2661
|
+
type messages_CardanoGovernanceRegistrationParametersType = CardanoGovernanceRegistrationParametersType;
|
|
2633
2662
|
type messages_CardanoTxAuxiliaryData = CardanoTxAuxiliaryData;
|
|
2634
2663
|
type messages_CardanoTxMint = CardanoTxMint;
|
|
2664
|
+
type messages_CardanoTxCollateralInput = CardanoTxCollateralInput;
|
|
2665
|
+
type messages_CardanoTxRequiredSigner = CardanoTxRequiredSigner;
|
|
2666
|
+
type messages_CardanoTxReferenceInput = CardanoTxReferenceInput;
|
|
2635
2667
|
type messages_CardanoTxItemAck = CardanoTxItemAck;
|
|
2636
2668
|
type messages_CardanoTxAuxiliaryDataSupplement = CardanoTxAuxiliaryDataSupplement;
|
|
2637
2669
|
type messages_CardanoTxWitnessRequest = CardanoTxWitnessRequest;
|
|
@@ -2639,19 +2671,8 @@ type messages_CardanoTxWitnessResponse = CardanoTxWitnessResponse;
|
|
|
2639
2671
|
type messages_CardanoTxHostAck = CardanoTxHostAck;
|
|
2640
2672
|
type messages_CardanoTxBodyHash = CardanoTxBodyHash;
|
|
2641
2673
|
type messages_CardanoSignTxFinished = CardanoSignTxFinished;
|
|
2642
|
-
type
|
|
2643
|
-
type
|
|
2644
|
-
type messages_CardanoAssetGroupType = CardanoAssetGroupType;
|
|
2645
|
-
type messages_CardanoTxOutputType = CardanoTxOutputType;
|
|
2646
|
-
type messages_CardanoPoolOwnerType = CardanoPoolOwnerType;
|
|
2647
|
-
type messages_CardanoPoolRelayParametersType = CardanoPoolRelayParametersType;
|
|
2648
|
-
type messages_CardanoTxCertificateType = CardanoTxCertificateType;
|
|
2649
|
-
type messages_CardanoTxWithdrawalType = CardanoTxWithdrawalType;
|
|
2650
|
-
type messages_CardanoTxAuxiliaryDataType = CardanoTxAuxiliaryDataType;
|
|
2651
|
-
type messages_CardanoSignTx = CardanoSignTx;
|
|
2652
|
-
type messages_CardanoSignedTxChunk = CardanoSignedTxChunk;
|
|
2653
|
-
type messages_CardanoSignedTxChunkAck = CardanoSignedTxChunkAck;
|
|
2654
|
-
type messages_CardanoSignedTx = CardanoSignedTx;
|
|
2674
|
+
type messages_CardanoSignMessage = CardanoSignMessage;
|
|
2675
|
+
type messages_CardanoMessageSignature = CardanoMessageSignature;
|
|
2655
2676
|
type messages_Success = Success;
|
|
2656
2677
|
type messages_FailureType = FailureType;
|
|
2657
2678
|
declare const messages_FailureType: typeof FailureType;
|
|
@@ -2745,6 +2766,10 @@ type messages_EthereumVerifyMessage = EthereumVerifyMessage;
|
|
|
2745
2766
|
type messages_EthereumSignMessageEIP712 = EthereumSignMessageEIP712;
|
|
2746
2767
|
type messages_EthereumSignTypedHash = EthereumSignTypedHash;
|
|
2747
2768
|
type messages_EthereumTypedDataSignature = EthereumTypedDataSignature;
|
|
2769
|
+
type messages_FilecoinGetAddress = FilecoinGetAddress;
|
|
2770
|
+
type messages_FilecoinAddress = FilecoinAddress;
|
|
2771
|
+
type messages_FilecoinSignTx = FilecoinSignTx;
|
|
2772
|
+
type messages_FilecoinSignedTx = FilecoinSignedTx;
|
|
2748
2773
|
type messages_Enum_BackupType = Enum_BackupType;
|
|
2749
2774
|
declare const messages_Enum_BackupType: typeof Enum_BackupType;
|
|
2750
2775
|
type messages_BackupType = BackupType;
|
|
@@ -2866,6 +2891,10 @@ type messages_NEMSignTx = NEMSignTx;
|
|
|
2866
2891
|
type messages_NEMSignedTx = NEMSignedTx;
|
|
2867
2892
|
type messages_NEMDecryptMessage = NEMDecryptMessage;
|
|
2868
2893
|
type messages_NEMDecryptedMessage = NEMDecryptedMessage;
|
|
2894
|
+
type messages_PolkadotGetAddress = PolkadotGetAddress;
|
|
2895
|
+
type messages_PolkadotAddress = PolkadotAddress;
|
|
2896
|
+
type messages_PolkadotSignTx = PolkadotSignTx;
|
|
2897
|
+
type messages_PolkadotSignedTx = PolkadotSignedTx;
|
|
2869
2898
|
type messages_RippleGetAddress = RippleGetAddress;
|
|
2870
2899
|
type messages_RippleAddress = RippleAddress;
|
|
2871
2900
|
type messages_RipplePayment = RipplePayment;
|
|
@@ -3039,9 +3068,11 @@ declare namespace messages {
|
|
|
3039
3068
|
messages_CardanoAddressType as CardanoAddressType,
|
|
3040
3069
|
messages_CardanoNativeScriptType as CardanoNativeScriptType,
|
|
3041
3070
|
messages_CardanoNativeScriptHashDisplayFormat as CardanoNativeScriptHashDisplayFormat,
|
|
3071
|
+
messages_CardanoTxOutputSerializationFormat as CardanoTxOutputSerializationFormat,
|
|
3042
3072
|
messages_CardanoCertificateType as CardanoCertificateType,
|
|
3043
3073
|
messages_CardanoPoolRelayType as CardanoPoolRelayType,
|
|
3044
3074
|
messages_CardanoTxAuxiliaryDataSupplementType as CardanoTxAuxiliaryDataSupplementType,
|
|
3075
|
+
messages_CardanoGovernanceRegistrationFormat as CardanoGovernanceRegistrationFormat,
|
|
3045
3076
|
messages_CardanoTxSigningMode as CardanoTxSigningMode,
|
|
3046
3077
|
messages_CardanoTxWitnessType as CardanoTxWitnessType,
|
|
3047
3078
|
messages_CardanoBlockchainPointerType as CardanoBlockchainPointerType,
|
|
@@ -3058,15 +3089,21 @@ declare namespace messages {
|
|
|
3058
3089
|
messages_CardanoTxOutput as CardanoTxOutput,
|
|
3059
3090
|
messages_CardanoAssetGroup as CardanoAssetGroup,
|
|
3060
3091
|
messages_CardanoToken as CardanoToken,
|
|
3092
|
+
messages_CardanoTxInlineDatumChunk as CardanoTxInlineDatumChunk,
|
|
3093
|
+
messages_CardanoTxReferenceScriptChunk as CardanoTxReferenceScriptChunk,
|
|
3061
3094
|
messages_CardanoPoolOwner as CardanoPoolOwner,
|
|
3062
3095
|
messages_CardanoPoolRelayParameters as CardanoPoolRelayParameters,
|
|
3063
3096
|
messages_CardanoPoolMetadataType as CardanoPoolMetadataType,
|
|
3064
3097
|
messages_CardanoPoolParametersType as CardanoPoolParametersType,
|
|
3065
3098
|
messages_CardanoTxCertificate as CardanoTxCertificate,
|
|
3066
3099
|
messages_CardanoTxWithdrawal as CardanoTxWithdrawal,
|
|
3067
|
-
|
|
3100
|
+
messages_CardanoGovernanceRegistrationDelegation as CardanoGovernanceRegistrationDelegation,
|
|
3101
|
+
messages_CardanoGovernanceRegistrationParametersType as CardanoGovernanceRegistrationParametersType,
|
|
3068
3102
|
messages_CardanoTxAuxiliaryData as CardanoTxAuxiliaryData,
|
|
3069
3103
|
messages_CardanoTxMint as CardanoTxMint,
|
|
3104
|
+
messages_CardanoTxCollateralInput as CardanoTxCollateralInput,
|
|
3105
|
+
messages_CardanoTxRequiredSigner as CardanoTxRequiredSigner,
|
|
3106
|
+
messages_CardanoTxReferenceInput as CardanoTxReferenceInput,
|
|
3070
3107
|
messages_CardanoTxItemAck as CardanoTxItemAck,
|
|
3071
3108
|
messages_CardanoTxAuxiliaryDataSupplement as CardanoTxAuxiliaryDataSupplement,
|
|
3072
3109
|
messages_CardanoTxWitnessRequest as CardanoTxWitnessRequest,
|
|
@@ -3074,19 +3111,8 @@ declare namespace messages {
|
|
|
3074
3111
|
messages_CardanoTxHostAck as CardanoTxHostAck,
|
|
3075
3112
|
messages_CardanoTxBodyHash as CardanoTxBodyHash,
|
|
3076
3113
|
messages_CardanoSignTxFinished as CardanoSignTxFinished,
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
messages_CardanoAssetGroupType as CardanoAssetGroupType,
|
|
3080
|
-
messages_CardanoTxOutputType as CardanoTxOutputType,
|
|
3081
|
-
messages_CardanoPoolOwnerType as CardanoPoolOwnerType,
|
|
3082
|
-
messages_CardanoPoolRelayParametersType as CardanoPoolRelayParametersType,
|
|
3083
|
-
messages_CardanoTxCertificateType as CardanoTxCertificateType,
|
|
3084
|
-
messages_CardanoTxWithdrawalType as CardanoTxWithdrawalType,
|
|
3085
|
-
messages_CardanoTxAuxiliaryDataType as CardanoTxAuxiliaryDataType,
|
|
3086
|
-
messages_CardanoSignTx as CardanoSignTx,
|
|
3087
|
-
messages_CardanoSignedTxChunk as CardanoSignedTxChunk,
|
|
3088
|
-
messages_CardanoSignedTxChunkAck as CardanoSignedTxChunkAck,
|
|
3089
|
-
messages_CardanoSignedTx as CardanoSignedTx,
|
|
3114
|
+
messages_CardanoSignMessage as CardanoSignMessage,
|
|
3115
|
+
messages_CardanoMessageSignature as CardanoMessageSignature,
|
|
3090
3116
|
messages_Success as Success,
|
|
3091
3117
|
messages_FailureType as FailureType,
|
|
3092
3118
|
messages_Failure as Failure,
|
|
@@ -3176,6 +3202,10 @@ declare namespace messages {
|
|
|
3176
3202
|
messages_EthereumSignMessageEIP712 as EthereumSignMessageEIP712,
|
|
3177
3203
|
messages_EthereumSignTypedHash as EthereumSignTypedHash,
|
|
3178
3204
|
messages_EthereumTypedDataSignature as EthereumTypedDataSignature,
|
|
3205
|
+
messages_FilecoinGetAddress as FilecoinGetAddress,
|
|
3206
|
+
messages_FilecoinAddress as FilecoinAddress,
|
|
3207
|
+
messages_FilecoinSignTx as FilecoinSignTx,
|
|
3208
|
+
messages_FilecoinSignedTx as FilecoinSignedTx,
|
|
3179
3209
|
messages_Enum_BackupType as Enum_BackupType,
|
|
3180
3210
|
messages_BackupType as BackupType,
|
|
3181
3211
|
messages_Enum_SafetyCheckLevel as Enum_SafetyCheckLevel,
|
|
@@ -3283,6 +3313,10 @@ declare namespace messages {
|
|
|
3283
3313
|
messages_NEMSignedTx as NEMSignedTx,
|
|
3284
3314
|
messages_NEMDecryptMessage as NEMDecryptMessage,
|
|
3285
3315
|
messages_NEMDecryptedMessage as NEMDecryptedMessage,
|
|
3316
|
+
messages_PolkadotGetAddress as PolkadotGetAddress,
|
|
3317
|
+
messages_PolkadotAddress as PolkadotAddress,
|
|
3318
|
+
messages_PolkadotSignTx as PolkadotSignTx,
|
|
3319
|
+
messages_PolkadotSignedTx as PolkadotSignedTx,
|
|
3286
3320
|
messages_RippleGetAddress as RippleGetAddress,
|
|
3287
3321
|
messages_RippleAddress as RippleAddress,
|
|
3288
3322
|
messages_RipplePayment as RipplePayment,
|
|
@@ -3402,4 +3436,4 @@ declare const _default: {
|
|
|
3402
3436
|
decodeProtocol: typeof decodeProtocol;
|
|
3403
3437
|
};
|
|
3404
3438
|
|
|
3405
|
-
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,
|
|
3439
|
+
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, 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, FirmwareUpload, GetAddress, GetDeviceInfo, GetECDHSessionKey, GetEntropy, GetFeatures, GetNextU2FCounter, GetOwnershipId, GetOwnershipProof, GetPublicKey, GetPublicKeyMultiple, HDNodePathType, HDNodeType, HEADER_SIZE, IdentityType, Initialize, InputScriptType, InternalInputScriptType, ListResDir, LockDevice, MESSAGE_HEADER_BYTE, MESSAGE_TOP_CHAR, MessageFromOneKey, MessageKey, MessageResponse, MessageSignature, MessageType, messages as Messages, 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, 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, RebootToBoardloader, RebootToBootloader, 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, TronGetAddress, TronMessageSignature, TronSignMessage, TronSignTx, TronSignedTx, TronTransferContract, TronTriggerSmartContract, 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 };
|
package/dist/index.js
CHANGED
|
@@ -514,6 +514,11 @@ exports.CardanoNativeScriptHashDisplayFormat = void 0;
|
|
|
514
514
|
CardanoNativeScriptHashDisplayFormat[CardanoNativeScriptHashDisplayFormat["BECH32"] = 1] = "BECH32";
|
|
515
515
|
CardanoNativeScriptHashDisplayFormat[CardanoNativeScriptHashDisplayFormat["POLICY_ID"] = 2] = "POLICY_ID";
|
|
516
516
|
})(exports.CardanoNativeScriptHashDisplayFormat || (exports.CardanoNativeScriptHashDisplayFormat = {}));
|
|
517
|
+
exports.CardanoTxOutputSerializationFormat = void 0;
|
|
518
|
+
(function (CardanoTxOutputSerializationFormat) {
|
|
519
|
+
CardanoTxOutputSerializationFormat[CardanoTxOutputSerializationFormat["ARRAY_LEGACY"] = 0] = "ARRAY_LEGACY";
|
|
520
|
+
CardanoTxOutputSerializationFormat[CardanoTxOutputSerializationFormat["MAP_BABBAGE"] = 1] = "MAP_BABBAGE";
|
|
521
|
+
})(exports.CardanoTxOutputSerializationFormat || (exports.CardanoTxOutputSerializationFormat = {}));
|
|
517
522
|
exports.CardanoCertificateType = void 0;
|
|
518
523
|
(function (CardanoCertificateType) {
|
|
519
524
|
CardanoCertificateType[CardanoCertificateType["STAKE_REGISTRATION"] = 0] = "STAKE_REGISTRATION";
|
|
@@ -530,13 +535,19 @@ exports.CardanoPoolRelayType = void 0;
|
|
|
530
535
|
exports.CardanoTxAuxiliaryDataSupplementType = void 0;
|
|
531
536
|
(function (CardanoTxAuxiliaryDataSupplementType) {
|
|
532
537
|
CardanoTxAuxiliaryDataSupplementType[CardanoTxAuxiliaryDataSupplementType["NONE"] = 0] = "NONE";
|
|
533
|
-
CardanoTxAuxiliaryDataSupplementType[CardanoTxAuxiliaryDataSupplementType["
|
|
538
|
+
CardanoTxAuxiliaryDataSupplementType[CardanoTxAuxiliaryDataSupplementType["GOVERNANCE_REGISTRATION_SIGNATURE"] = 1] = "GOVERNANCE_REGISTRATION_SIGNATURE";
|
|
534
539
|
})(exports.CardanoTxAuxiliaryDataSupplementType || (exports.CardanoTxAuxiliaryDataSupplementType = {}));
|
|
540
|
+
exports.CardanoGovernanceRegistrationFormat = void 0;
|
|
541
|
+
(function (CardanoGovernanceRegistrationFormat) {
|
|
542
|
+
CardanoGovernanceRegistrationFormat[CardanoGovernanceRegistrationFormat["CIP15"] = 0] = "CIP15";
|
|
543
|
+
CardanoGovernanceRegistrationFormat[CardanoGovernanceRegistrationFormat["CIP36"] = 1] = "CIP36";
|
|
544
|
+
})(exports.CardanoGovernanceRegistrationFormat || (exports.CardanoGovernanceRegistrationFormat = {}));
|
|
535
545
|
exports.CardanoTxSigningMode = void 0;
|
|
536
546
|
(function (CardanoTxSigningMode) {
|
|
537
547
|
CardanoTxSigningMode[CardanoTxSigningMode["ORDINARY_TRANSACTION"] = 0] = "ORDINARY_TRANSACTION";
|
|
538
548
|
CardanoTxSigningMode[CardanoTxSigningMode["POOL_REGISTRATION_AS_OWNER"] = 1] = "POOL_REGISTRATION_AS_OWNER";
|
|
539
549
|
CardanoTxSigningMode[CardanoTxSigningMode["MULTISIG_TRANSACTION"] = 2] = "MULTISIG_TRANSACTION";
|
|
550
|
+
CardanoTxSigningMode[CardanoTxSigningMode["PLUTUS_TRANSACTION"] = 3] = "PLUTUS_TRANSACTION";
|
|
540
551
|
})(exports.CardanoTxSigningMode || (exports.CardanoTxSigningMode = {}));
|
|
541
552
|
exports.CardanoTxWitnessType = void 0;
|
|
542
553
|
(function (CardanoTxWitnessType) {
|
|
@@ -748,9 +759,11 @@ var messages = /*#__PURE__*/Object.freeze({
|
|
|
748
759
|
get CardanoAddressType () { return exports.CardanoAddressType; },
|
|
749
760
|
get CardanoNativeScriptType () { return exports.CardanoNativeScriptType; },
|
|
750
761
|
get CardanoNativeScriptHashDisplayFormat () { return exports.CardanoNativeScriptHashDisplayFormat; },
|
|
762
|
+
get CardanoTxOutputSerializationFormat () { return exports.CardanoTxOutputSerializationFormat; },
|
|
751
763
|
get CardanoCertificateType () { return exports.CardanoCertificateType; },
|
|
752
764
|
get CardanoPoolRelayType () { return exports.CardanoPoolRelayType; },
|
|
753
765
|
get CardanoTxAuxiliaryDataSupplementType () { return exports.CardanoTxAuxiliaryDataSupplementType; },
|
|
766
|
+
get CardanoGovernanceRegistrationFormat () { return exports.CardanoGovernanceRegistrationFormat; },
|
|
754
767
|
get CardanoTxSigningMode () { return exports.CardanoTxSigningMode; },
|
|
755
768
|
get CardanoTxWitnessType () { return exports.CardanoTxWitnessType; },
|
|
756
769
|
get FailureType () { return exports.FailureType; },
|