chainlib/chainlib/eth/constant.py

6 lines
220 B
Python
Raw Normal View History

2021-02-09 09:42:46 +01:00
ZERO_ADDRESS = '0x{:040x}'.format(0)
ZERO_CONTENT = '0x{:064x}'.format(0)
MINIMUM_FEE_UNITS = 21000
2021-02-09 12:12:37 +01:00
MINIMUM_FEE_PRICE = 1000000000
2021-04-04 14:55:27 +02:00
MAX_UINT = int('0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff', 16)