-
Notifications
You must be signed in to change notification settings - Fork 688
/
Copy pathtyping.py
121 lines (86 loc) · 2.44 KB
/
typing.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
from typing import (
TYPE_CHECKING,
Any,
Callable,
Dict,
Generic,
Iterable,
List,
NewType,
Optional,
Sequence,
Tuple,
Type,
TypedDict,
TypeVar,
Union,
)
from eth_typing import (
Address,
BlockNumber,
Hash32,
HexStr,
)
if TYPE_CHECKING:
from eth.abc import ( # noqa: F401
BlockHeaderAPI,
SignedTransactionAPI,
VirtualMachineAPI,
WithdrawalAPI,
)
JournalDBCheckpoint = NewType("JournalDBCheckpoint", int)
class AccountDetails(TypedDict):
balance: int
nonce: int
code: bytes
storage: Dict[int, int]
AccountState = Dict[Address, AccountDetails]
AccountDiff = Iterable[Tuple[Address, str, Union[int, bytes], Union[int, bytes]]]
class Block(TypedDict, total=False):
header: "BlockHeaderAPI"
transactions: Sequence["SignedTransactionAPI"]
uncles: Sequence["BlockHeaderAPI"]
withdrawals: Sequence["WithdrawalAPI"]
BlockRange = Tuple[BlockNumber, BlockNumber]
ChainGaps = Tuple[
# series of gaps before the chain head
Tuple[BlockRange, ...],
# the first missing block number at the tip of the chain
BlockNumber,
]
GeneralState = Union[
AccountState, List[Tuple[Address, Dict[str, Union[int, bytes, Dict[int, int]]]]]
]
GenesisDict = Dict[str, Union[int, BlockNumber, bytes, Hash32]]
BytesOrView = Union[bytes, memoryview]
Normalizer = Callable[[Dict[Any, Any]], Dict[str, Any]]
class RawAccountDetails(TypedDict):
balance: HexStr
nonce: HexStr
code: HexStr
storage: Dict[HexStr, HexStr]
class TransactionDict(TypedDict):
nonce: int
gasLimit: int
gasPrice: int
to: Address
value: int
data: bytes
secretKey: bytes
TransactionNormalizer = Callable[[TransactionDict], TransactionDict]
VMFork = Tuple[BlockNumber, Type["VirtualMachineAPI"]]
VMConfiguration = Sequence[VMFork]
VRS = NewType("VRS", Tuple[int, int, int])
IntConvertible = Union[int, bytes, HexStr, str]
TFunc = TypeVar("TFunc")
class StaticMethod(Generic[TFunc]):
"""
A property class purely to convince mypy to let us assign a function to an
instance variable.
See more at: https://github.com/python/mypy/issues/708#issuecomment-405812141
"""
def __get__(self, oself: Any, owner: Any) -> TFunc:
return self._func
def __set__(self, oself: Any, value: TFunc) -> None:
self._func = value
HeaderParams = Union[Optional[int], BlockNumber, bytes, Address, Hash32]