@@ -3470,6 +3470,152 @@ def __init__(
34703470 def is_type_of (cls , msg : Any ) -> TypeGuard ["DebugLinkWatchLayout" ]:
34713471 return isinstance (msg , cls )
34723472
3473+ class DnxGetAddress (protobuf .MessageType ):
3474+ address_n : "list[int]"
3475+ show_display : "bool | None"
3476+
3477+ def __init__ (
3478+ self ,
3479+ * ,
3480+ address_n : "list[int] | None" = None ,
3481+ show_display : "bool | None" = None ,
3482+ ) -> None :
3483+ pass
3484+
3485+ @classmethod
3486+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxGetAddress" ]:
3487+ return isinstance (msg , cls )
3488+
3489+ class DnxAddress (protobuf .MessageType ):
3490+ address : "str | None"
3491+
3492+ def __init__ (
3493+ self ,
3494+ * ,
3495+ address : "str | None" = None ,
3496+ ) -> None :
3497+ pass
3498+
3499+ @classmethod
3500+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxAddress" ]:
3501+ return isinstance (msg , cls )
3502+
3503+ class DnxSignTx (protobuf .MessageType ):
3504+ address_n : "list[int]"
3505+ inputs_count : "int"
3506+ to_address : "str"
3507+ amount : "int"
3508+ fee : "int"
3509+ payment_id : "bytes | None"
3510+
3511+ def __init__ (
3512+ self ,
3513+ * ,
3514+ inputs_count : "int" ,
3515+ to_address : "str" ,
3516+ amount : "int" ,
3517+ fee : "int" ,
3518+ address_n : "list[int] | None" = None ,
3519+ payment_id : "bytes | None" = None ,
3520+ ) -> None :
3521+ pass
3522+
3523+ @classmethod
3524+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxSignTx" ]:
3525+ return isinstance (msg , cls )
3526+
3527+ class DnxInputRequest (protobuf .MessageType ):
3528+ request_index : "int | None"
3529+ tx_key : "DnxTxKey | None"
3530+ computed_key_image : "DnxComputedKeyImage | None"
3531+
3532+ def __init__ (
3533+ self ,
3534+ * ,
3535+ request_index : "int | None" = None ,
3536+ tx_key : "DnxTxKey | None" = None ,
3537+ computed_key_image : "DnxComputedKeyImage | None" = None ,
3538+ ) -> None :
3539+ pass
3540+
3541+ @classmethod
3542+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxInputRequest" ]:
3543+ return isinstance (msg , cls )
3544+
3545+ class DnxInputAck (protobuf .MessageType ):
3546+ prev_index : "int"
3547+ global_index : "int"
3548+ tx_pubkey : "bytes"
3549+ prev_out_pubkey : "bytes"
3550+ amount : "int"
3551+
3552+ def __init__ (
3553+ self ,
3554+ * ,
3555+ prev_index : "int" ,
3556+ global_index : "int" ,
3557+ tx_pubkey : "bytes" ,
3558+ prev_out_pubkey : "bytes" ,
3559+ amount : "int" ,
3560+ ) -> None :
3561+ pass
3562+
3563+ @classmethod
3564+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxInputAck" ]:
3565+ return isinstance (msg , cls )
3566+
3567+ class DnxRTSigsRequest (protobuf .MessageType ):
3568+
3569+ @classmethod
3570+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxRTSigsRequest" ]:
3571+ return isinstance (msg , cls )
3572+
3573+ class DnxSignedTx (protobuf .MessageType ):
3574+ signatures : "list[bytes]"
3575+ output_keys : "list[bytes]"
3576+
3577+ def __init__ (
3578+ self ,
3579+ * ,
3580+ signatures : "list[bytes] | None" = None ,
3581+ output_keys : "list[bytes] | None" = None ,
3582+ ) -> None :
3583+ pass
3584+
3585+ @classmethod
3586+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxSignedTx" ]:
3587+ return isinstance (msg , cls )
3588+
3589+ class DnxTxKey (protobuf .MessageType ):
3590+ ephemeral_tx_sec_key : "bytes | None"
3591+ ephemeral_tx_pub_key : "bytes | None"
3592+
3593+ def __init__ (
3594+ self ,
3595+ * ,
3596+ ephemeral_tx_sec_key : "bytes | None" = None ,
3597+ ephemeral_tx_pub_key : "bytes | None" = None ,
3598+ ) -> None :
3599+ pass
3600+
3601+ @classmethod
3602+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxTxKey" ]:
3603+ return isinstance (msg , cls )
3604+
3605+ class DnxComputedKeyImage (protobuf .MessageType ):
3606+ key_image : "bytes | None"
3607+
3608+ def __init__ (
3609+ self ,
3610+ * ,
3611+ key_image : "bytes | None" = None ,
3612+ ) -> None :
3613+ pass
3614+
3615+ @classmethod
3616+ def is_type_of (cls , msg : Any ) -> TypeGuard ["DnxComputedKeyImage" ]:
3617+ return isinstance (msg , cls )
3618+
34733619 class EosGetPublicKey (protobuf .MessageType ):
34743620 address_n : "list[int]"
34753621 show_display : "bool | None"
@@ -4536,24 +4682,6 @@ def __init__(
45364682 def is_type_of (cls , msg : Any ) -> TypeGuard ["EthereumTypedDataSignatureOneKey" ]:
45374683 return isinstance (msg , cls )
45384684
4539- class EthereumSignMessageEIP712 (protobuf .MessageType ):
4540- address_n : "list[int]"
4541- domain_hash : "bytes | None"
4542- message_hash : "bytes | None"
4543-
4544- def __init__ (
4545- self ,
4546- * ,
4547- address_n : "list[int] | None" = None ,
4548- domain_hash : "bytes | None" = None ,
4549- message_hash : "bytes | None" = None ,
4550- ) -> None :
4551- pass
4552-
4553- @classmethod
4554- def is_type_of (cls , msg : Any ) -> TypeGuard ["EthereumSignMessageEIP712" ]:
4555- return isinstance (msg , cls )
4556-
45574685 class EthereumAccessListOneKey (protobuf .MessageType ):
45584686 address : "str"
45594687 storage_keys : "list[bytes]"
0 commit comments