mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 05:58:09 +00:00
cf396e3661
This separates the regeneration step from the build/install step. This is to simplify bootstrapping: trezorlib is needed in several build/test steps, and bound to be needed in more. It should be usable and installable straight from the checkout.
54 lines
1.5 KiB
Python
54 lines
1.5 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
from .TronFrozenSupply import TronFrozenSupply
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import List
|
|
except ImportError:
|
|
List = None # type: ignore
|
|
|
|
|
|
class TronAssetIssueContract(p.MessageType):
|
|
|
|
def __init__(
|
|
self,
|
|
name: str = None,
|
|
abbr: str = None,
|
|
total_supply: int = None,
|
|
frozen_supply: List[TronFrozenSupply] = None,
|
|
trx_num: int = None,
|
|
num: int = None,
|
|
start_time: int = None,
|
|
end_time: int = None,
|
|
description: str = None,
|
|
url: str = None,
|
|
) -> None:
|
|
self.name = name
|
|
self.abbr = abbr
|
|
self.total_supply = total_supply
|
|
self.frozen_supply = frozen_supply if frozen_supply is not None else []
|
|
self.trx_num = trx_num
|
|
self.num = num
|
|
self.start_time = start_time
|
|
self.end_time = end_time
|
|
self.description = description
|
|
self.url = url
|
|
|
|
@classmethod
|
|
def get_fields(cls):
|
|
return {
|
|
2: ('name', p.UnicodeType, 0),
|
|
3: ('abbr', p.UnicodeType, 0),
|
|
4: ('total_supply', p.UVarintType, 0),
|
|
5: ('frozen_supply', TronFrozenSupply, p.FLAG_REPEATED),
|
|
6: ('trx_num', p.UVarintType, 0),
|
|
7: ('num', p.UVarintType, 0),
|
|
8: ('start_time', p.UVarintType, 0),
|
|
9: ('end_time', p.UVarintType, 0),
|
|
10: ('description', p.UnicodeType, 0),
|
|
11: ('url', p.UnicodeType, 0),
|
|
}
|