mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-30 20:02:34 +00:00
10 lines
243 B
Python
10 lines
243 B
Python
from typing import *
|
|
def validate_address(address: str, network: int) -> bool:
|
|
"""
|
|
Validate a NEM address
|
|
"""
|
|
def compute_address(public_key: bytes, network: int) -> str:
|
|
"""
|
|
Compute a NEM address from a public key
|
|
"""
|