mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-22 22:38:08 +00:00
67b879ac07
This deserves some explanation. * tests were moved to separate python/tests subdir * trezorlib was moved to python/src, so that it does not exist on PYTHONPATH by default (see https://blog.ionelmc.ro/2014/05/25/python-packaging/ for details) * everything was updated to understand the new structure * trezorctl was changed from a top-level executable script to a module `trezorlib.cli.trezorctl` and is installed via the entry_points mechanism. This should make it work normally on Windows! The package should be installable as normal through pip and pipenv, no changes are needed on that side. The source package from pypi will include unit tests. (Device tests were completely moved out). Wheel will exclude them, because users don't need them. That shrinks the .whl from 520 kB to 270 - nice! python: reorganize remaining unit tests
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
from .NEMMosaic import NEMMosaic
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import Dict, List, Optional
|
|
from typing_extensions import Literal # noqa: F401
|
|
except ImportError:
|
|
Dict, List, Optional = None, None, None # type: ignore
|
|
|
|
|
|
class NEMTransfer(p.MessageType):
|
|
|
|
def __init__(
|
|
self,
|
|
recipient: str = None,
|
|
amount: int = None,
|
|
payload: bytes = None,
|
|
public_key: bytes = None,
|
|
mosaics: List[NEMMosaic] = None,
|
|
) -> None:
|
|
self.recipient = recipient
|
|
self.amount = amount
|
|
self.payload = payload
|
|
self.public_key = public_key
|
|
self.mosaics = mosaics if mosaics is not None else []
|
|
|
|
@classmethod
|
|
def get_fields(cls) -> Dict:
|
|
return {
|
|
1: ('recipient', p.UnicodeType, 0),
|
|
2: ('amount', p.UVarintType, 0),
|
|
3: ('payload', p.BytesType, 0),
|
|
4: ('public_key', p.BytesType, 0),
|
|
5: ('mosaics', NEMMosaic, p.FLAG_REPEATED),
|
|
}
|